Module datarush.analytics
Enum PMMLTreeModel.SplitCharacteristic
- java.lang.Object
-
- java.lang.Enum<PMMLTreeModel.SplitCharacteristic>
-
- com.pervasive.datarush.analytics.decisiontree.PMMLTreeModel.SplitCharacteristic
-
- All Implemented Interfaces:
Serializable
,Comparable<PMMLTreeModel.SplitCharacteristic>
- Enclosing class:
- PMMLTreeModel
public static enum PMMLTreeModel.SplitCharacteristic extends Enum<PMMLTreeModel.SplitCharacteristic>
Corresponds to the PMMLsplitCharacteristic
enumeration.- See Also:
- TreeModel
-
-
Enum Constant Summary
Enum Constants Enum Constant Description binarySplit
Each Node must have either 0 or 2 child Nodes.multiSplit
Each Node may have 0 or more child Nodes.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
binarySplit
public static final PMMLTreeModel.SplitCharacteristic binarySplit
Each Node must have either 0 or 2 child Nodes.
-
multiSplit
public static final PMMLTreeModel.SplitCharacteristic multiSplit
Each Node may have 0 or more child Nodes.
-
-
Method Detail
-
values
public static PMMLTreeModel.SplitCharacteristic[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (PMMLTreeModel.SplitCharacteristic c : PMMLTreeModel.SplitCharacteristic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PMMLTreeModel.SplitCharacteristic valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-