public static enum CEAST.Operator extends java.lang.Enum<CEAST.Operator>
Modifier and Type | Method and Description |
---|---|
boolean |
isbinary() |
java.util.EnumSet<CEAST.Constant> |
legalvalues() |
java.lang.String |
printstring() |
CEAST.Constant |
returntype() |
static CEAST.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CEAST.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CEAST.Operator LT
public static final CEAST.Operator LE
public static final CEAST.Operator GT
public static final CEAST.Operator GE
public static final CEAST.Operator EQ
public static final CEAST.Operator NEQ
public static final CEAST.Operator REQ
public static final CEAST.Operator AND
public static final CEAST.Operator NOT
public static CEAST.Operator[] values()
for (CEAST.Operator c : CEAST.Operator.values()) System.out.println(c);
public static CEAST.Operator 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 printstring()
public boolean isbinary()
public java.util.EnumSet<CEAST.Constant> legalvalues()
public CEAST.Constant returntype()