public static enum Expr.operatorType extends java.lang.Enum<Expr.operatorType>
Enum Constant and Description |
---|
ABS |
AND |
ASSIGNMENT |
DIV |
ELEMENT |
EQUALS |
GREATER |
GREATEREQUAL |
INTERSECTION |
LOWER |
LOWEREQUAL |
MINUS |
MOD |
NOT |
NOTEQUALS |
OR |
PLUS |
SETMINUS |
SUBSET |
TIMES |
UNION |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static Expr.operatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Expr.operatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Expr.operatorType EQUALS
public static final Expr.operatorType NOTEQUALS
public static final Expr.operatorType LOWER
public static final Expr.operatorType LOWEREQUAL
public static final Expr.operatorType GREATER
public static final Expr.operatorType GREATEREQUAL
public static final Expr.operatorType PLUS
public static final Expr.operatorType MINUS
public static final Expr.operatorType TIMES
public static final Expr.operatorType DIV
public static final Expr.operatorType MOD
public static final Expr.operatorType ABS
public static final Expr.operatorType SUBSET
public static final Expr.operatorType ELEMENT
public static final Expr.operatorType SETMINUS
public static final Expr.operatorType UNION
public static final Expr.operatorType INTERSECTION
public static final Expr.operatorType AND
public static final Expr.operatorType OR
public static final Expr.operatorType NOT
public static final Expr.operatorType ASSIGNMENT
public static final Expr.operatorType UNKNOWN
public static Expr.operatorType[] values()
for (Expr.operatorType c : Expr.operatorType.values()) System.out.println(c);
public static Expr.operatorType 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 null