public static enum FilterBuilder.Operator extends java.lang.Enum<FilterBuilder.Operator>
Modifier and Type | Field and Description |
---|---|
(package private) java.lang.String |
name |
Modifier and Type | Method and Description |
---|---|
static FilterBuilder.Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterBuilder.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterBuilder.Operator EQ
public static final FilterBuilder.Operator APPROX
public static final FilterBuilder.Operator GE
public static final FilterBuilder.Operator LE
public static FilterBuilder.Operator[] values()
for (FilterBuilder.Operator c : FilterBuilder.Operator.values()) System.out.println(c);
public static FilterBuilder.Operator 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