public static enum ToolBox.TiedRanks extends Enum<ToolBox.TiedRanks>
ToolBox.rank(double[], TiedRanks).| Enum Constant and Description |
|---|
CONTIGUOUS
Identical values obtain identical ranks.
|
IN_ORDER
Identical values obtain different ranks.
|
PESSIMISTIC_SPORTS
Identical values obtain an identical rank, which is the (numerically) largest in the range occupied by those values.
|
SPORTS
Identical values obtain identical ranks.
|
| Modifier and Type | Method and Description |
|---|---|
static ToolBox.TiedRanks |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToolBox.TiedRanks[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolBox.TiedRanks IN_ORDER
public static final ToolBox.TiedRanks SPORTS
public static final ToolBox.TiedRanks PESSIMISTIC_SPORTS
public static final ToolBox.TiedRanks CONTIGUOUS
public static ToolBox.TiedRanks[] values()
for (ToolBox.TiedRanks c : ToolBox.TiedRanks.values()) System.out.println(c);
public static ToolBox.TiedRanks 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 null