java.io.Serializable, java.lang.Comparable<Comparators>public enum Comparators extends java.lang.Enum<Comparators>
Comparator-related utility methods.| Modifier and Type | Method | Description |
|---|---|---|
static int |
compareDiscardNaN(double d1,
double d2,
boolean asc) |
Compare
d1 against d2, pushing 0d/0d at the bottom. |
static Comparators |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Comparators[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Comparators[] values()
for (Comparators c : Comparators.values()) System.out.println(c);
public static Comparators 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 static int compareDiscardNaN(double d1,
double d2,
boolean asc)
d1 against d2, pushing 0d/0d at the bottom.