public enum PerfSummaryType extends Enum<PerfSummaryType>
| Enum Constant and Description |
|---|
average |
latest |
maximum |
minimum |
none |
summation |
| Modifier and Type | Method and Description |
|---|---|
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 nullCopyright © 2011-2012. All Rights Reserved.