public static enum FilterParser.Op extends java.lang.Enum<FilterParser.Op>
Enum Constant and Description |
---|
EQUAL |
GREATER |
GREATER_OR_EQUAL |
LESS |
LESS_OR_EQUAL |
NOT_EQUAL |
RANGE |
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
symbol |
Modifier and Type | Method and Description |
---|---|
FilterParser.Op |
not() |
java.lang.String |
toString() |
static FilterParser.Op |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterParser.Op[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterParser.Op GREATER
public static final FilterParser.Op GREATER_OR_EQUAL
public static final FilterParser.Op LESS
public static final FilterParser.Op LESS_OR_EQUAL
public static final FilterParser.Op EQUAL
public static final FilterParser.Op NOT_EQUAL
public static final FilterParser.Op RANGE
public static FilterParser.Op[] values()
for (FilterParser.Op c : FilterParser.Op.values()) System.out.println(c);
public static FilterParser.Op 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 FilterParser.Op not()
public java.lang.String toString()
toString
in class java.lang.Enum<FilterParser.Op>