Modifier and Type | Class and Description |
---|---|
static class |
OPERAND.Conditional |
Enum Constant and Description |
---|
CONTAINS |
EQ |
GREATER_THAN |
GREATER_THAN_EQ |
LESS_THAN |
LESS_THAN_EQ |
Modifier and Type | Method and Description |
---|---|
static OPERAND |
from(java.lang.String symbol) |
java.lang.String |
toString() |
static OPERAND |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OPERAND[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OPERAND GREATER_THAN
public static final OPERAND LESS_THAN
public static final OPERAND GREATER_THAN_EQ
public static final OPERAND LESS_THAN_EQ
public static final OPERAND EQ
public static final OPERAND CONTAINS
public static OPERAND[] values()
for (OPERAND c : OPERAND.values()) System.out.println(c);
public static OPERAND 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 OPERAND from(java.lang.String symbol)
public java.lang.String toString()
toString
in class java.lang.Enum<OPERAND>