public static enum PredictiveModel.VariableType extends Enum<PredictiveModel.VariableType>
Type |
Categorical |
Ordered Discrete (Low, Med., High) |
Quantitative or Continuous |
Ignore this variable |
Enum Constant and Description |
---|
CATEGORICAL
The associated variable can assume one of a limited number of values
(categories).
|
IGNORE
The associated variable should be ignored.
|
ONE_CLASS
The associated variable takes a single value.
|
ORDERED_DISCRETE
The associated variable can can assume a limited number of discrete,
ordered values.
|
QUANTITATIVE_CONTINUOUS
The associated variable can assume any real value within a range of
values.
|
Modifier and Type | Method and Description |
---|---|
static PredictiveModel.VariableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PredictiveModel.VariableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PredictiveModel.VariableType CATEGORICAL
public static final PredictiveModel.VariableType ORDERED_DISCRETE
public static final PredictiveModel.VariableType ONE_CLASS
public static final PredictiveModel.VariableType QUANTITATIVE_CONTINUOUS
public static final PredictiveModel.VariableType IGNORE
public static PredictiveModel.VariableType[] values()
for (PredictiveModel.VariableType c : PredictiveModel.VariableType.values()) System.out.println(c);
public static PredictiveModel.VariableType 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 © 2020 Rogue Wave Software. All rights reserved.