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