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