public static enum DecisionTree.Kind extends Enum<DecisionTree.Kind>
DecisionTree| Enum Constant and Description |
|---|
IMPOSSIBLE
|
RETURN
|
SPLIT
|
SWITCH
|
TABLE
|
| Modifier and Type | Method and Description |
|---|---|
static DecisionTree.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DecisionTree.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DecisionTree.Kind RETURN
public static final DecisionTree.Kind SPLIT
public static final DecisionTree.Kind SWITCH
public static final DecisionTree.Kind TABLE
public static final DecisionTree.Kind IMPOSSIBLE
public static DecisionTree.Kind[] values()
for (DecisionTree.Kind c : DecisionTree.Kind.values()) System.out.println(c);
public static DecisionTree.Kind 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 null