public enum DistributionFormula extends java.lang.Enum<DistributionFormula>
Enum Constant and Description |
---|
CHI_SQUARE
Chi-Square Distribution.
|
CUMULATIVE_CHI_SQUARE
Cumulative Chi-Square Distribution.
|
CUMULATIVE_F
Cumulative F Distribution.
|
CUMULATIVE_NORMAL
Cumulative Normal Distribution.
|
CUMULATIVE_T
Cumulative T Distribution.
|
CUSTOM
Custom Distribution.
|
F
F Distribution.
|
INVERSE_CUMULATIVE_CHI_SQUARE
Inverse Cumulative Chi-Square Distribution.
|
INVERSE_CUMULATIVE_F
Inverse Cumulative F Distribution.
|
INVERSE_CUMULATIVE_NORMAL
Inverse Cumulative Normal Distribution.
|
INVERSE_CUMULATIVE_T
Inverse Cumulative T Distribution.
|
NORMAL
Normal Distribution.
|
T
T Distribution.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.statistical.DistributionFormula.
|
static DistributionFormula |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DistributionFormula[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributionFormula NORMAL
public static final DistributionFormula T
public static final DistributionFormula F
public static final DistributionFormula CHI_SQUARE
public static final DistributionFormula CUMULATIVE_NORMAL
public static final DistributionFormula CUMULATIVE_T
public static final DistributionFormula CUMULATIVE_F
public static final DistributionFormula CUMULATIVE_CHI_SQUARE
public static final DistributionFormula INVERSE_CUMULATIVE_NORMAL
public static final DistributionFormula INVERSE_CUMULATIVE_T
public static final DistributionFormula INVERSE_CUMULATIVE_F
public static final DistributionFormula INVERSE_CUMULATIVE_CHI_SQUARE
public static final DistributionFormula CUSTOM
public static DistributionFormula[] values()
for (DistributionFormula c : DistributionFormula.values()) System.out.println(c);
public static DistributionFormula valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic int getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.statistical.DistributionFormula.
2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.