public enum BuiltinComparator extends Enum<BuiltinComparator>
| Enum Constant and Description |
|---|
BYTEWISE_COMPARATOR |
REVERSE_BYTEWISE_COMPARATOR |
| Modifier and Type | Method and Description |
|---|---|
static BuiltinComparator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltinComparator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltinComparator BYTEWISE_COMPARATOR
public static final BuiltinComparator REVERSE_BYTEWISE_COMPARATOR
public static BuiltinComparator[] values()
for (BuiltinComparator c : BuiltinComparator.values()) System.out.println(c);
public static BuiltinComparator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2021. All rights reserved.