Package jsl.utilities.random.rvariable
Enum RVariableIfc.RVType
- java.lang.Object
-
- java.lang.Enum<RVariableIfc.RVType>
-
- jsl.utilities.random.rvariable.RVariableIfc.RVType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RVariableIfc.RVType>
- Enclosing interface:
- RVariableIfc
public static enum RVariableIfc.RVType extends java.lang.Enum<RVariableIfc.RVType>
The set of pre-defined distribution types
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Bernoulli
Beta
Binomial
ChiSquared
Constant
DEmpirical
DUniform
Empirical
Exponential
Gamma
GeneralizedBeta
Geometric
JohnsonB
Laplace
LogLogistic
Lognormal
NegativeBinomial
Normal
PearsonType5
PearsonType6
Poisson
ShiftedGeometric
Triangular
Uniform
Weibull
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RVariableIfc.RVType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RVariableIfc.RVType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Bernoulli
public static final RVariableIfc.RVType Bernoulli
-
Beta
public static final RVariableIfc.RVType Beta
-
ChiSquared
public static final RVariableIfc.RVType ChiSquared
-
Binomial
public static final RVariableIfc.RVType Binomial
-
Constant
public static final RVariableIfc.RVType Constant
-
DUniform
public static final RVariableIfc.RVType DUniform
-
Exponential
public static final RVariableIfc.RVType Exponential
-
Gamma
public static final RVariableIfc.RVType Gamma
-
GeneralizedBeta
public static final RVariableIfc.RVType GeneralizedBeta
-
Geometric
public static final RVariableIfc.RVType Geometric
-
JohnsonB
public static final RVariableIfc.RVType JohnsonB
-
Laplace
public static final RVariableIfc.RVType Laplace
-
LogLogistic
public static final RVariableIfc.RVType LogLogistic
-
Lognormal
public static final RVariableIfc.RVType Lognormal
-
NegativeBinomial
public static final RVariableIfc.RVType NegativeBinomial
-
Normal
public static final RVariableIfc.RVType Normal
-
PearsonType5
public static final RVariableIfc.RVType PearsonType5
-
PearsonType6
public static final RVariableIfc.RVType PearsonType6
-
Poisson
public static final RVariableIfc.RVType Poisson
-
ShiftedGeometric
public static final RVariableIfc.RVType ShiftedGeometric
-
Triangular
public static final RVariableIfc.RVType Triangular
-
Uniform
public static final RVariableIfc.RVType Uniform
-
Weibull
public static final RVariableIfc.RVType Weibull
-
DEmpirical
public static final RVariableIfc.RVType DEmpirical
-
Empirical
public static final RVariableIfc.RVType Empirical
-
-
Method Detail
-
values
public static RVariableIfc.RVType[] 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 (RVariableIfc.RVType c : RVariableIfc.RVType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RVariableIfc.RVType valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-