public static enum Rank.RankMode extends Enum<Rank.RankMode>
Enum Constant and Description |
---|
DENSE
Dense ranking, similar to standard but does not leave gaps.
|
ORDINAL
Ordinal ranking where each item receives a distinct rank.
|
STANDARD
Standard or competitive ranking that leaves gaps in assigned ranks.
|
Modifier and Type | Method and Description |
---|---|
static Rank.RankMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rank.RankMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rank.RankMode STANDARD
public static final Rank.RankMode DENSE
public static final Rank.RankMode ORDINAL
public static Rank.RankMode[] values()
for (Rank.RankMode c : Rank.RankMode.values()) System.out.println(c);
public static Rank.RankMode 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 Actian Corporation. All rights reserved.