public enum PerfSummaryType extends Enum<PerfSummaryType>
Java class for PerfSummaryType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PerfSummaryType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="average"/>
<enumeration value="maximum"/>
<enumeration value="minimum"/>
<enumeration value="latest"/>
<enumeration value="summation"/>
<enumeration value="none"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
AVERAGE |
LATEST |
MAXIMUM |
MINIMUM |
NONE |
SUMMATION |
| Modifier and Type | Method and Description |
|---|---|
static PerfSummaryType |
fromValue(String v) |
String |
value() |
static PerfSummaryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PerfSummaryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerfSummaryType AVERAGE
public static final PerfSummaryType MAXIMUM
public static final PerfSummaryType MINIMUM
public static final PerfSummaryType LATEST
public static final PerfSummaryType SUMMATION
public static final PerfSummaryType NONE
public static PerfSummaryType[] values()
for (PerfSummaryType c : PerfSummaryType.values()) System.out.println(c);
public static PerfSummaryType 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 nullpublic String value()
public static PerfSummaryType fromValue(String v)
Copyright © 2018. All rights reserved.