Chart FX 7 for Java Server

com.softwarefx.chartfx.server.statistical
Enum DistributionFormula

java.lang.Object
  extended by java.lang.Enum<DistributionFormula>
      extended by com.softwarefx.chartfx.server.statistical.DistributionFormula
All Implemented Interfaces:
Serializable, Comparable<DistributionFormula>

public enum DistributionFormula
extends 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

NORMAL

public static final DistributionFormula NORMAL
Normal Distribution.


T

public static final DistributionFormula T
T Distribution.


F

public static final DistributionFormula F
F Distribution.


CHI_SQUARE

public static final DistributionFormula CHI_SQUARE
Chi-Square Distribution.


CUMULATIVE_NORMAL

public static final DistributionFormula CUMULATIVE_NORMAL
Cumulative Normal Distribution.


CUMULATIVE_T

public static final DistributionFormula CUMULATIVE_T
Cumulative T Distribution.


CUMULATIVE_F

public static final DistributionFormula CUMULATIVE_F
Cumulative F Distribution.


CUMULATIVE_CHI_SQUARE

public static final DistributionFormula CUMULATIVE_CHI_SQUARE
Cumulative Chi-Square Distribution.


INVERSE_CUMULATIVE_NORMAL

public static final DistributionFormula INVERSE_CUMULATIVE_NORMAL
Inverse Cumulative Normal Distribution.


INVERSE_CUMULATIVE_T

public static final DistributionFormula INVERSE_CUMULATIVE_T
Inverse Cumulative T Distribution.


INVERSE_CUMULATIVE_F

public static final DistributionFormula INVERSE_CUMULATIVE_F
Inverse Cumulative F Distribution.


INVERSE_CUMULATIVE_CHI_SQUARE

public static final DistributionFormula INVERSE_CUMULATIVE_CHI_SQUARE
Inverse Cumulative Chi-Square Distribution.


CUSTOM

public static final DistributionFormula CUSTOM
Custom Distribution.

Method Detail

values

public static DistributionFormula[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (DistributionFormula c : DistributionFormula.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static DistributionFormula valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getEnumSetValue

public static EnumSet<DistributionFormula> getEnumSetValue(int value)

Returns a EnumSet that represents the given numeric value.

Parameters:
value - numeric representation of the Enumset.

getEnumValue

public static DistributionFormula getEnumValue(int value)

Returns a Enum Item that represents the given numeric value.

Parameters:
value - numeric representation of the Enum item.

getUnderlyingValue

public static int getUnderlyingValue(DistributionFormula value)

Returns a numeric value that represents the given EnumSet or Enum item.

Parameters:
value - A Enum Item or EnumSet.

getUnderlyingValue

public static int getUnderlyingValue(EnumSet<DistributionFormula> value)

Returns a numeric value that represents the given EnumSet or Enum item.

Parameters:
value - A Enum Item or EnumSet.

http://www.softwarefx.com

2008 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.