|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<DistributionFormula>
com.softwarefx.chartfx.server.statistical.DistributionFormula
public enum DistributionFormula
Distribution Formula enumerations.
Enum Constant Summary | |
---|---|
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. |
Method Summary | |
---|---|
static EnumSet<DistributionFormula> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static DistributionFormula |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(DistributionFormula value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(EnumSet<DistributionFormula> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static DistributionFormula |
valueOf(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. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, 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 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
Method Detail |
---|
public static DistributionFormula[] values()
for (DistributionFormula c : DistributionFormula.values()) System.out.println(c);
public static DistributionFormula 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 nullpublic static EnumSet<DistributionFormula> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static DistributionFormula getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(DistributionFormula value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<DistributionFormula> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |