public static enum XGBoostModel.XGBoostParameters.FeatureSelector extends java.lang.Enum<XGBoostModel.XGBoostParameters.FeatureSelector>
| Enum Constant and Description |
|---|
cyclic |
greedy |
random |
shuffle |
thrifty |
| Modifier and Type | Method and Description |
|---|---|
static XGBoostModel.XGBoostParameters.FeatureSelector |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static XGBoostModel.XGBoostParameters.FeatureSelector[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final XGBoostModel.XGBoostParameters.FeatureSelector cyclic
public static final XGBoostModel.XGBoostParameters.FeatureSelector shuffle
public static final XGBoostModel.XGBoostParameters.FeatureSelector random
public static final XGBoostModel.XGBoostParameters.FeatureSelector greedy
public static final XGBoostModel.XGBoostParameters.FeatureSelector thrifty
public static XGBoostModel.XGBoostParameters.FeatureSelector[] values()
for (XGBoostModel.XGBoostParameters.FeatureSelector c : XGBoostModel.XGBoostParameters.FeatureSelector.values()) System.out.println(c);
public static XGBoostModel.XGBoostParameters.FeatureSelector 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