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