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