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