public static enum DecisionTreeNode.CONDITION extends java.lang.Enum<DecisionTreeNode.CONDITION>
Modifier and Type | Method and Description |
---|---|
static DecisionTreeNode.CONDITION |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DecisionTreeNode.CONDITION[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionTreeNode.CONDITION GT
public static final DecisionTreeNode.CONDITION GTE
public static final DecisionTreeNode.CONDITION LT
public static final DecisionTreeNode.CONDITION LTE
public static final DecisionTreeNode.CONDITION EQ
public static final DecisionTreeNode.CONDITION NEQ
public static DecisionTreeNode.CONDITION[] values()
for (DecisionTreeNode.CONDITION c : DecisionTreeNode.CONDITION.values()) System.out.println(c);
public static DecisionTreeNode.CONDITION 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