| Enum Constant and Description |
|---|
DeepLearning |
DRF |
GBM |
GLM |
StackedEnsemble |
XGBoost |
| Modifier and Type | Method and Description |
|---|---|
static Algo |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Algo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Algo GLM
public static final Algo DRF
public static final Algo GBM
public static final Algo DeepLearning
public static final Algo StackedEnsemble
public static final Algo XGBoost
public static Algo[] values()
for (Algo c : Algo.values()) System.out.println(c);
public static Algo 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