public enum REGRESSION_NORMALIZATION_METHOD extends Enum<REGRESSION_NORMALIZATION_METHOD>
| Enum Constant and Description |
|---|
CAUCHIT |
CLOGLOG |
EXP |
LOGIT |
LOGLOG |
NONE |
PROBIT |
SIMPLEMAX |
SOFTMAX |
| Modifier and Type | Method and Description |
|---|---|
static REGRESSION_NORMALIZATION_METHOD |
byName(String name) |
String |
getName() |
static REGRESSION_NORMALIZATION_METHOD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static REGRESSION_NORMALIZATION_METHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final REGRESSION_NORMALIZATION_METHOD NONE
public static final REGRESSION_NORMALIZATION_METHOD SIMPLEMAX
public static final REGRESSION_NORMALIZATION_METHOD SOFTMAX
public static final REGRESSION_NORMALIZATION_METHOD LOGIT
public static final REGRESSION_NORMALIZATION_METHOD PROBIT
public static final REGRESSION_NORMALIZATION_METHOD CLOGLOG
public static final REGRESSION_NORMALIZATION_METHOD EXP
public static final REGRESSION_NORMALIZATION_METHOD LOGLOG
public static final REGRESSION_NORMALIZATION_METHOD CAUCHIT
public static REGRESSION_NORMALIZATION_METHOD[] values()
for (REGRESSION_NORMALIZATION_METHOD c : REGRESSION_NORMALIZATION_METHOD.values()) System.out.println(c);
public static REGRESSION_NORMALIZATION_METHOD 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 static REGRESSION_NORMALIZATION_METHOD byName(String name)
public String getName()
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.