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