public static enum DefaultFilter.Condition extends java.lang.Enum<DefaultFilter.Condition>
| Enum Constant and Description |
|---|
EQUAL |
HIGHER_THAN_OR_EQUAL |
LOWER_THAN_OR_EQUAL |
| Modifier and Type | Method and Description |
|---|---|
static DefaultFilter.Condition |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DefaultFilter.Condition[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DefaultFilter.Condition EQUAL
public static final DefaultFilter.Condition LOWER_THAN_OR_EQUAL
public static final DefaultFilter.Condition HIGHER_THAN_OR_EQUAL
public static DefaultFilter.Condition[] values()
for (DefaultFilter.Condition c : DefaultFilter.Condition.values()) System.out.println(c);
public static DefaultFilter.Condition 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