java.io.Serializable
, java.lang.Comparable<CompareFilter.Operator>
public static enum CompareFilter.Operator extends java.lang.Enum<CompareFilter.Operator>
Enum Constant | Description |
---|---|
EQUALS |
|
GREATER_OR_EQUAL |
|
GREATER_THAN |
|
LOWER_OR_EQUAL |
|
LOWER_THAN |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
toString() |
|
static CompareFilter.Operator |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static CompareFilter.Operator[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareFilter.Operator EQUALS
public static final CompareFilter.Operator LOWER_THAN
public static final CompareFilter.Operator LOWER_OR_EQUAL
public static final CompareFilter.Operator GREATER_THAN
public static final CompareFilter.Operator GREATER_OR_EQUAL
public static CompareFilter.Operator[] values()
for (CompareFilter.Operator c : CompareFilter.Operator.values()) System.out.println(c);
public static CompareFilter.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 nullpublic java.lang.String toString()
toString
in class java.lang.Enum<CompareFilter.Operator>