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