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