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