public static enum DecisionTree.MissingValueStrategy extends Enum<DecisionTree.MissingValueStrategy>
Java class for null.
The following schema fragment specifies the expected content contained within this class.
<simpleType>
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="lastPrediction"/>
<enumeration value="nullPrediction"/>
<enumeration value="defaultChild"/>
<enumeration value="weightedConfidence"/>
<enumeration value="aggregateNodes"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AGGREGATE_NODES |
DEFAULT_CHILD |
LAST_PREDICTION |
NONE |
NULL_PREDICTION |
WEIGHTED_CONFIDENCE |
| Modifier and Type | Method and Description |
|---|---|
static DecisionTree.MissingValueStrategy |
fromValue(String v) |
String |
value() |
static DecisionTree.MissingValueStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecisionTree.MissingValueStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionTree.MissingValueStrategy LAST_PREDICTION
public static final DecisionTree.MissingValueStrategy NULL_PREDICTION
public static final DecisionTree.MissingValueStrategy DEFAULT_CHILD
public static final DecisionTree.MissingValueStrategy WEIGHTED_CONFIDENCE
public static final DecisionTree.MissingValueStrategy AGGREGATE_NODES
public static final DecisionTree.MissingValueStrategy NONE
public static DecisionTree.MissingValueStrategy[] values()
for (DecisionTree.MissingValueStrategy c : DecisionTree.MissingValueStrategy.values()) System.out.println(c);
public static DecisionTree.MissingValueStrategy 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 nullpublic String value()
public static DecisionTree.MissingValueStrategy fromValue(String v)
Copyright © 2016 University of Tartu. All rights reserved.