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