public static enum PMMLTreeModel.SplitCharacteristic extends Enum<PMMLTreeModel.SplitCharacteristic>
splitCharacteristic
enumeration.Enum Constant and Description |
---|
binarySplit
Each Node must have either 0 or 2 child Nodes.
|
multiSplit
Each Node may have 0 or more child Nodes.
|
Modifier and Type | Method and Description |
---|---|
static PMMLTreeModel.SplitCharacteristic |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PMMLTreeModel.SplitCharacteristic[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PMMLTreeModel.SplitCharacteristic binarySplit
public static final PMMLTreeModel.SplitCharacteristic multiSplit
public static PMMLTreeModel.SplitCharacteristic[] values()
for (PMMLTreeModel.SplitCharacteristic c : PMMLTreeModel.SplitCharacteristic.values()) System.out.println(c);
public static PMMLTreeModel.SplitCharacteristic 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 © 2016 Actian Corporation. All rights reserved.