public enum FeatureTypes extends java.lang.Enum<FeatureTypes>
| Enum Constant and Description |
|---|
BOOLEAN |
CATEGORICAL |
CATEGORICAL_SET |
DENSE_VECTOR |
NUMERIC |
TENSOR |
TERM_VECTOR |
UNSPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static FeatureTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FeatureTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FeatureTypes BOOLEAN
public static final FeatureTypes NUMERIC
public static final FeatureTypes CATEGORICAL
public static final FeatureTypes DENSE_VECTOR
public static final FeatureTypes TERM_VECTOR
public static final FeatureTypes CATEGORICAL_SET
public static final FeatureTypes UNSPECIFIED
public static final FeatureTypes TENSOR
public static FeatureTypes[] values()
for (FeatureTypes c : FeatureTypes.values()) System.out.println(c);
public static FeatureTypes 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