public enum CompareFunction extends java.lang.Enum<CompareFunction>
| Enum Constant and Description |
|---|
ALWAYS
Always passes
|
EQUAL
Pass if the incoming value is equal to the stored value.
|
G_EQUAL
Pass if the incoming value is greater than or equal to the stored value.
|
GREATER
Pass if the incoming value is greater than the stored value.
|
L_EQUAL
Pass if the incoming value is less than or equal to the stored value.
|
LESS
Pass if the incoming value is less than the stored value.
|
NEVER
Never passes
|
NOT_EQUAL
Pass if the incoming value is not equal to the stored value.
|
| Modifier and Type | Method and Description |
|---|---|
static CompareFunction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompareFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompareFunction NEVER
public static final CompareFunction LESS
public static final CompareFunction EQUAL
public static final CompareFunction L_EQUAL
public static final CompareFunction GREATER
public static final CompareFunction NOT_EQUAL
public static final CompareFunction G_EQUAL
public static final CompareFunction ALWAYS
public static CompareFunction[] values()
for (CompareFunction c : CompareFunction.values()) System.out.println(c);
public static CompareFunction 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