public static enum RegressionModel.NormalizationMethod extends Enum<RegressionModel.NormalizationMethod> implements StringValue<RegressionModel.NormalizationMethod>
| Enum Constant and Description |
|---|
CAUCHIT |
CLOGLOG |
EXP |
LOGIT |
LOGLOG |
NONE |
PROBIT |
SIMPLEMAX |
SOFTMAX |
| Modifier and Type | Method and Description |
|---|---|
static RegressionModel.NormalizationMethod |
fromValue(String v) |
String |
toString() |
String |
value() |
static RegressionModel.NormalizationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RegressionModel.NormalizationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegressionModel.NormalizationMethod NONE
public static final RegressionModel.NormalizationMethod SIMPLEMAX
public static final RegressionModel.NormalizationMethod SOFTMAX
public static final RegressionModel.NormalizationMethod LOGIT
public static final RegressionModel.NormalizationMethod PROBIT
public static final RegressionModel.NormalizationMethod CLOGLOG
public static final RegressionModel.NormalizationMethod EXP
public static final RegressionModel.NormalizationMethod LOGLOG
public static final RegressionModel.NormalizationMethod CAUCHIT
public static RegressionModel.NormalizationMethod[] values()
for (RegressionModel.NormalizationMethod c : RegressionModel.NormalizationMethod.values()) System.out.println(c);
public static RegressionModel.NormalizationMethod valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
value in interface StringValue<RegressionModel.NormalizationMethod>public static RegressionModel.NormalizationMethod fromValue(String v)
public String toString()
toString in class Enum<RegressionModel.NormalizationMethod>Copyright © 2022. All rights reserved.