public enum Truth extends java.lang.Enum<Truth> implements Any, NativeObject<java.lang.Boolean>
| Modifier and Type | Method and Description |
|---|---|
Any |
and(Any other) |
Truth |
and(Truth other) |
Type |
getType() |
Truth |
isEqualTo(Any other) |
Truth |
negate() |
Any |
or(Any other) |
Truth |
or(Truth other) |
java.lang.Boolean |
toNative() |
java.lang.String |
toString() |
static Truth |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Truth[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type TYPE
public static Truth[] values()
for (Truth c : Truth.values()) System.out.println(c);
public static Truth 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 java.lang.String toString()
toString in class java.lang.Enum<Truth>public java.lang.Boolean toNative()
toNative in interface AnytoNative in interface NativeObject<java.lang.Boolean>