public enum StatsType extends Enum<StatsType>
Enum Constant and Description |
---|
CATEGORY
Category.
|
DOUBLE
Numeric.
|
INTEGER
Numeric.
|
NONE
No values.
|
TEXT
Text.
|
Modifier and Type | Method and Description |
---|---|
static StatsType |
valueOf(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(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2005–2015 BaseX Team. All rights reserved.