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