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