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