public static enum KolmogorovSmirnov.Side extends Enum<KolmogorovSmirnov.Side>
Enum Constant and Description |
---|
GREATER
compute Dn+;
check whether the cdf of a sample lies above the null hypothesis
|
LESS
compute Dn-;
check whether the cdf of a sample lies below the null hypothesis
|
TWO_SIDED
compute Dn
|
Modifier and Type | Method and Description |
---|---|
static KolmogorovSmirnov.Side |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KolmogorovSmirnov.Side[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KolmogorovSmirnov.Side TWO_SIDED
public static final KolmogorovSmirnov.Side GREATER
public static final KolmogorovSmirnov.Side LESS
public static KolmogorovSmirnov.Side[] values()
for (KolmogorovSmirnov.Side c : KolmogorovSmirnov.Side.values()) System.out.println(c);
public static KolmogorovSmirnov.Side 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 © 2010-2020 NM FinTech Ltd.. All Rights Reserved.