|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<PMMLMissingValueStrategy>
org.knime.base.node.mine.decisiontree2.PMMLMissingValueStrategy
public enum PMMLMissingValueStrategy
Represents the missing value strategies as defined in PMML (http://www.dmg.org/v4-0/TreeModel.html#MissValStrategies).
Enum Constant Summary | |
---|---|
AGGREGATE_NODES
aggregateNodes strategy as specified in PMML. |
|
DEFAULT_CHILD
defaultChild strategy as specified in PMML. |
|
LAST_PREDICTION
lastPrediction strategy as specified in PMML. |
|
NONE
none strategy as specified in PMML. |
|
NULL_PREDICTION
nullPrediction strategy as specified in PMML. |
|
WEIGHTED_CONFIDENCE
weightedConfidence strategy as specified in PMML. |
Method Summary | |
---|---|
static PMMLMissingValueStrategy |
get(String represent)
Returns the corresponding missing value strategy to the string representation. |
static PMMLMissingValueStrategy |
getDefault()
Returns the default missing value strategy. |
String |
toString()
|
static PMMLMissingValueStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static PMMLMissingValueStrategy[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final PMMLMissingValueStrategy LAST_PREDICTION
public static final PMMLMissingValueStrategy NULL_PREDICTION
public static final PMMLMissingValueStrategy DEFAULT_CHILD
public static final PMMLMissingValueStrategy WEIGHTED_CONFIDENCE
public static final PMMLMissingValueStrategy AGGREGATE_NODES
public static final PMMLMissingValueStrategy NONE
Method Detail |
---|
public static PMMLMissingValueStrategy[] values()
for (PMMLMissingValueStrategy c : PMMLMissingValueStrategy.values()) System.out.println(c);
public static PMMLMissingValueStrategy valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic String toString()
toString
in class Enum<PMMLMissingValueStrategy>
public static PMMLMissingValueStrategy get(String represent)
represent
- the representation to retrieve the strategy for
public static PMMLMissingValueStrategy getDefault()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |