Package dap4.core.ce
Enum CEAST.Operator
- java.lang.Object
-
- java.lang.Enum<CEAST.Operator>
-
- dap4.core.ce.CEAST.Operator
-
- All Implemented Interfaces:
Serializable
,Comparable<CEAST.Operator>
- Enclosing class:
- CEAST
public static enum CEAST.Operator extends Enum<CEAST.Operator>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isbinary()
EnumSet<CEAST.Constant>
legalvalues()
String
printstring()
CEAST.Constant
returntype()
static CEAST.Operator
valueOf(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.
-
-
-
Enum Constant Detail
-
LT
public static final CEAST.Operator LT
-
LE
public static final CEAST.Operator LE
-
GT
public static final CEAST.Operator GT
-
GE
public static final CEAST.Operator GE
-
EQ
public static final CEAST.Operator EQ
-
NEQ
public static final CEAST.Operator NEQ
-
REQ
public static final CEAST.Operator REQ
-
AND
public static final CEAST.Operator AND
-
NOT
public static final CEAST.Operator NOT
-
-
Method Detail
-
values
public static CEAST.Operator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CEAST.Operator c : CEAST.Operator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CEAST.Operator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
printstring
public String printstring()
-
isbinary
public boolean isbinary()
-
legalvalues
public EnumSet<CEAST.Constant> legalvalues()
-
returntype
public CEAST.Constant returntype()
-
-