|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<TiesStrategy> org.apache.commons.math3.stat.ranking.TiesStrategy
public enum TiesStrategy
Strategies for handling tied values in rank transformations.
Enum Constant Summary | |
---|---|
AVERAGE
Ties get the average of applicable ranks |
|
MAXIMUM
Ties get the maximum applicable rank |
|
MINIMUM
Ties get the minimum applicable rank |
|
RANDOM
Ties get a random integral value from among applicable ranks |
|
SEQUENTIAL
Ties assigned sequential ranks in order of occurrence |
Method Summary | |
---|---|
static TiesStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static TiesStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final TiesStrategy SEQUENTIAL
public static final TiesStrategy MINIMUM
public static final TiesStrategy MAXIMUM
public static final TiesStrategy AVERAGE
public static final TiesStrategy RANDOM
Method Detail |
---|
public static TiesStrategy[] values()
for (TiesStrategy c : TiesStrategy.values()) System.out.println(c);
public static TiesStrategy valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |