Obj.ObjCls| Modifier and Type | Method and Description |
|---|---|
Bool |
and(Bool other) |
Obj |
and(Obj other)
And operator in AJE.
|
Obj |
getAttr(java.lang.String name)
Attribute operator in AJE.
|
Cls |
getType() |
Bool |
isEqualTo(Obj other)
Equality operator in AJE.
|
Bool |
negate()
Negation operator in AJE.
|
static Bool |
of(boolean value) |
Bool |
or(Bool other) |
Obj |
or(Obj other)
Or operator in AJE.
|
Bool |
pow(Bool other) |
Obj |
pow(Obj other)
Exponentiation operator in AJE.
|
java.lang.Boolean |
toJava() |
java.lang.String |
toString() |
static Bool |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Bool[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Bool[] values()
for (Bool c : Bool.values()) System.out.println(c);
public static Bool valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static Bool of(boolean value)
public java.lang.String toString()
toString in class java.lang.Enum<Bool>public java.lang.Boolean toJava()
public Cls getType()
public Obj or(Obj other)
Obj||.
Undefined.VALUE if not implemented.public Obj and(Obj other)
Obj&&.
Undefined.VALUE if not implemented.public Bool negate()
Obj!.public Obj pow(Obj other)
Obj^.
Undefined.VALUE if not implemented.public Bool isEqualTo(Obj other)
Obj==.
Bool representation of Object.equals(Object)
if not implemented.public Obj getAttr(java.lang.String name)
Obja.b.
Undefined.VALUE if not implemented.