| Enum Constant and Description |
|---|
CATEGORY
Category.
|
DOUBLE
Numeric.
|
INTEGER
Numeric.
|
NONE
No values.
|
TEXT
Text.
|
| Modifier and Type | Method and Description |
|---|---|
static StatsType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatsType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatsType TEXT
public static final StatsType CATEGORY
public static final StatsType INTEGER
public static final StatsType DOUBLE
public static final StatsType NONE
public static StatsType[] values()
for (StatsType c : StatsType.values()) System.out.println(c);
public static StatsType 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