We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb3cf79 commit 71e02a9Copy full SHA for 71e02a9
java/toolgood.algorithm/src/main/java/toolgood/algorithm/Operand.java
@@ -293,6 +293,11 @@ static abstract class OperandT<T> extends Operand {
293
public OperandT(final T obj) {
294
Value = obj;
295
}
296
+
297
+ @Override
298
+ public Object Value() {
299
+ return Value;
300
+ }
301
302
303
static class OperandArray extends OperandT<java.util.List<Operand>> {
@@ -413,6 +418,11 @@ public double NumberValue() {
413
418
return Value;
414
419
415
420
421
422
423
424
425
416
426
@Override
417
427
public int IntValue() {
428
return Value.intValue();
0 commit comments