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