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