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