|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<NaNStrategy> org.apache.commons.math3.stat.ranking.NaNStrategy
public enum NaNStrategy
Strategies for handling NaN values in rank transformations.
Double.NEGATIVE_INFINITY
.Double.POSITIVE_INFINITY
Enum Constant Summary | |
---|---|
FAILED
NaNs result in an exception |
|
FIXED
NaNs are left in place |
|
MAXIMAL
NaNs are considered maximal in the ordering |
|
MINIMAL
NaNs are considered minimal in the ordering |
|
REMOVED
NaNs are removed before computing ranks |
Method Summary | |
---|---|
static NaNStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static NaNStrategy[] |
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 NaNStrategy MINIMAL
public static final NaNStrategy MAXIMAL
public static final NaNStrategy REMOVED
public static final NaNStrategy FIXED
public static final NaNStrategy FAILED
Method Detail |
---|
public static NaNStrategy[] values()
for (NaNStrategy c : NaNStrategy.values()) System.out.println(c);
public static NaNStrategy 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 |