public enum DistributionFormula extends java.lang.Enum<DistributionFormula>
| Enum Constant and Description | 
|---|
| CHI_SQUAREChi-Square Distribution. | 
| CUMULATIVE_CHI_SQUARECumulative Chi-Square Distribution. | 
| CUMULATIVE_FCumulative F Distribution. | 
| CUMULATIVE_NORMALCumulative Normal Distribution. | 
| CUMULATIVE_TCumulative T Distribution. | 
| CUSTOMCustom Distribution. | 
| FF Distribution. | 
| INVERSE_CUMULATIVE_CHI_SQUAREInverse Cumulative Chi-Square Distribution. | 
| INVERSE_CUMULATIVE_FInverse Cumulative F Distribution. | 
| INVERSE_CUMULATIVE_NORMALInverse Cumulative Normal Distribution. | 
| INVERSE_CUMULATIVE_TInverse Cumulative T Distribution. | 
| NORMALNormal Distribution. | 
| TT 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.