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