public static enum Rank.Type extends java.lang.Enum<Rank.Type>
| Enum Constant and Description |
|---|
COMPETITION
Competition rank, tired elements given rank of lowest 4,2,2,1.
|
DENSE
Dense ranking 3,2,2,1
|
FRACTIONAL
Fractional ranking, mean of ordinal ranks of tied elements
4,2.5,2.5,1
|
| Modifier and Type | Method and Description |
|---|---|
static Rank.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Rank.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rank.Type COMPETITION
public static final Rank.Type DENSE
public static final Rank.Type FRACTIONAL
public static Rank.Type[] values()
for (Rank.Type c : Rank.Type.values()) System.out.println(c);
public static Rank.Type 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 nullCopyright © 2018 Singular Systems http://www.singularsys.com/jep