Obj.ObjCls| Modifier and Type | Method and Description |
|---|---|
Decimal |
divide(Decimal other) |
Obj |
divide(Obj other)
Division operator in AJE.
|
boolean |
equals(java.lang.Object obj) |
Cls<Decimal> |
getType() |
Obj |
greaterThan(Obj other)
Greater than operator in AJE.
|
int |
hashCode() |
Obj |
invoke(java.util.List<Obj> arguments)
Invcoation operator in AJE.
|
Obj |
isEqualTo(Obj other)
Equality operator in AJE.
|
Obj |
lessThan(Obj other)
Less than operator in AJE.
|
Obj |
minus(Obj other)
Subtraction operator in AJE.
|
Obj |
mod(Obj other)
Modulus operator in AJE.
|
Decimal |
negative()
Negative numeric unary operator in AJE.
|
static Decimal |
of(double value) |
Obj |
plus(Obj other)
Addition operator in AJE.
|
Obj |
pow(Obj other)
Exponentiation operator in AJE.
|
Obj |
times(Obj other)
Multiplication operator in AJE.
|
java.lang.Double |
toJava() |
java.lang.String |
toString() |
double |
value() |
public static Decimal of(double value)
public double value()
public java.lang.Double toJava()
public boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic int hashCode()
hashCode in class java.lang.Objectpublic Obj plus(Obj other)
Obj+.
Undefined.VALUE if not implemented.public Obj minus(Obj other)
Obj-.
Undefined.VALUE if not implemented.public Obj times(Obj other)
Obj*.
Undefined.VALUE if not implemented.public Obj divide(Obj other)
Obj/.
Undefined.VALUE if not implemented.public Obj pow(Obj other)
Obj^.
Undefined.VALUE if not implemented.public Obj mod(Obj other)
Obj%.
Undefined.VALUE if not implemented.public Decimal negative()
Obj-.public Obj isEqualTo(Obj other)
Obj==.
Bool representation of Object.equals(Object)
if not implemented.public Obj greaterThan(Obj other)
Obj>.
Undefined.VALUE if not implemented.greaterThan in interface Obj<java.lang.Double>other - Right Obj operand.Obj result of the operation.public Obj lessThan(Obj other)
Obj<.
Undefined.VALUE if not implemented.public Obj invoke(java.util.List<Obj> arguments)
Obja(b, c...).
Undefined.VALUE if not implemented.