public enum Comparators extends Enum<Comparators>
Comparator-related utility methods.| Modifier and Type | Method and Description |
|---|---|
static int |
compareDiscardNaN(double d1,
double d2,
boolean asc)
Compare
d1 against d2, pushing at the bottom. |
static Comparators |
valueOf(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(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 nullpublic static int compareDiscardNaN(double d1,
double d2,
boolean asc)
d1 against d2, pushing at the bottom.Copyright © 2009–2016. All rights reserved.