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