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