public static enum Functions.CompareMode extends Enum<Functions.CompareMode>
| Enum Constant and Description |
|---|
EQUAL |
GREATER |
LESS |
NOTGREATER |
NOTLESS |
| Modifier and Type | Method and Description |
|---|---|
static Functions.CompareMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Functions.CompareMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Functions.CompareMode LESS
public static final Functions.CompareMode NOTLESS
public static final Functions.CompareMode GREATER
public static final Functions.CompareMode NOTGREATER
public static final Functions.CompareMode EQUAL
public static Functions.CompareMode[] values()
for (Functions.CompareMode c : Functions.CompareMode.values()) System.out.println(c);
public static Functions.CompareMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.