public enum CategoricalEncoder extends java.lang.Enum<CategoricalEncoder>
| Enum Constant and Description |
|---|
DUMMY
Dummy encoding.
|
LEVEL
Level of measurement.
|
ONE_HOT
One hot encoding.
|
| Modifier and Type | Method and Description |
|---|---|
static CategoricalEncoder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CategoricalEncoder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CategoricalEncoder LEVEL
public static final CategoricalEncoder DUMMY
public static final CategoricalEncoder ONE_HOT
public static CategoricalEncoder[] values()
for (CategoricalEncoder c : CategoricalEncoder.values()) System.out.println(c);
public static CategoricalEncoder 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