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