public enum WhereAttributeOperator extends java.lang.Enum<WhereAttributeOperator>
Enum Constant and Description |
---|
EQUAL |
LESS |
LESS_OR_EQUAL |
MORE |
MORE_OR_EQUAL |
TILDA |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
operator |
Modifier and Type | Method and Description |
---|---|
static WhereAttributeOperator |
parseOperator(java.lang.String operator) |
java.lang.String |
toString() |
static WhereAttributeOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WhereAttributeOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
for (WhereAttributeOperator c : WhereAttributeOperator.values()) System.out.println(c);
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 nulltoString
in class java.lang.Enum<WhereAttributeOperator>