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