public static enum Rank.RankMode extends Enum<Rank.RankMode>
| Enum Constant and Description | 
|---|
| DENSEDense ranking, similar to standard but does not leave gaps. | 
| ORDINALOrdinal ranking where each item receives a distinct rank. | 
| STANDARDStandard 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 © 2016 Actian Corporation. All rights reserved.