public enum MetricCategory extends java.lang.Enum<MetricCategory>
Java-Klasse für MetricCategory.
Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist.
<simpleType name="MetricCategory">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Unspec"/>
<enumeration value="Msrmt"/>
<enumeration value="Clc"/>
<enumeration value="Set"/>
<enumeration value="Preset"/>
<enumeration value="Rcmm"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CALCULATION
Clc = Calculation.
|
MEASUREMENT
Msrmt = Measurement.
|
PRESETTING
Preset = Presetting.
|
RECOMMENDATION
Rcmm = Recommendation.
|
SETTING
Set = Setting.
|
UNSPECIFIED
Unspec = Unspecified.
|
| Modifier and Type | Method and Description |
|---|---|
static MetricCategory |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static MetricCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MetricCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MetricCategory UNSPECIFIED
public static final MetricCategory MEASUREMENT
public static final MetricCategory CALCULATION
public static final MetricCategory SETTING
public static final MetricCategory PRESETTING
public static final MetricCategory RECOMMENDATION
public static MetricCategory[] values()
for (MetricCategory c : MetricCategory.values()) System.out.println(c);
public static MetricCategory 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 value()
public static MetricCategory fromValue(java.lang.String v)