private static enum Shorts.LexicographicalComparator extends java.lang.Enum<Shorts.LexicographicalComparator> implements java.util.Comparator<short[]>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
int |
compare(short[] left,
short[] right) |
java.lang.String |
toString() |
static Shorts.LexicographicalComparator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Shorts.LexicographicalComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Shorts.LexicographicalComparator INSTANCE
public static Shorts.LexicographicalComparator[] values()
for (Shorts.LexicographicalComparator c : Shorts.LexicographicalComparator.values()) System.out.println(c);
public static Shorts.LexicographicalComparator 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 nullpublic int compare(short[] left,
short[] right)
compare in interface java.util.Comparator<short[]>public java.lang.String toString()
toString in class java.lang.Enum<Shorts.LexicographicalComparator>