public static enum Estimate.EstimatorType extends java.lang.Enum<Estimate.EstimatorType>
| Enum Constant and Description |
|---|
LeastSquares |
LikelihoodBased |
MomentBased |
Resampling |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static Estimate.EstimatorType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Estimate.EstimatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Estimate.EstimatorType Resampling
public static final Estimate.EstimatorType LeastSquares
public static final Estimate.EstimatorType LikelihoodBased
public static final Estimate.EstimatorType MomentBased
public static final Estimate.EstimatorType Unknown
public static Estimate.EstimatorType[] values()
for (Estimate.EstimatorType c : Estimate.EstimatorType.values()) System.out.println(c);
public static Estimate.EstimatorType 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 null