public static enum FieldProcessor.GeneratedFeatureType extends Enum<FieldProcessor.GeneratedFeatureType>
Enum Constant and Description |
---|
BINARISED_CATEGORICAL
Categoricals binarised into separate features.
|
CATEGORICAL
Categorical features with the values converted into doubles.
|
REAL
Real valued features.
|
TEXT
Text features.
|
Modifier and Type | Method and Description |
---|---|
static FieldProcessor.GeneratedFeatureType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FieldProcessor.GeneratedFeatureType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldProcessor.GeneratedFeatureType BINARISED_CATEGORICAL
public static final FieldProcessor.GeneratedFeatureType CATEGORICAL
public static final FieldProcessor.GeneratedFeatureType REAL
public static final FieldProcessor.GeneratedFeatureType TEXT
public static FieldProcessor.GeneratedFeatureType[] values()
for (FieldProcessor.GeneratedFeatureType c : FieldProcessor.GeneratedFeatureType.values()) System.out.println(c);
public static FieldProcessor.GeneratedFeatureType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2021 Oracle and/or its affiliates. All rights reserved.