public static enum StatisticDefinition.StatisticType extends java.lang.Enum<StatisticDefinition.StatisticType>
Enum Constant and Description |
---|
AVG |
COUNT |
MAX |
MIN |
STDDEV |
SUM |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static StatisticDefinition.StatisticType |
get(java.lang.String st) |
java.lang.String |
getValue() |
static StatisticDefinition.StatisticType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatisticDefinition.StatisticType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatisticDefinition.StatisticType UNKNOWN
public static final StatisticDefinition.StatisticType COUNT
public static final StatisticDefinition.StatisticType SUM
public static final StatisticDefinition.StatisticType MIN
public static final StatisticDefinition.StatisticType MAX
public static final StatisticDefinition.StatisticType AVG
public static final StatisticDefinition.StatisticType STDDEV
public static StatisticDefinition.StatisticType[] values()
for (StatisticDefinition.StatisticType c : StatisticDefinition.StatisticType.values()) System.out.println(c);
public static StatisticDefinition.StatisticType 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 nullpublic java.lang.String getValue()
public static StatisticDefinition.StatisticType get(java.lang.String st)