public static enum PerformanceWrapper.TypeGlobal extends java.lang.Enum<PerformanceWrapper.TypeGlobal>
Enum Constant and Description |
---|
duration |
queueing |
service |
sojourn |
waiting |
Modifier and Type | Field and Description |
---|---|
static int |
size |
Modifier and Type | Method and Description |
---|---|
abstract java.lang.String |
toString() |
static PerformanceWrapper.TypeGlobal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PerformanceWrapper.TypeGlobal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PerformanceWrapper.TypeGlobal queueing
public static final PerformanceWrapper.TypeGlobal waiting
public static final PerformanceWrapper.TypeGlobal service
public static final PerformanceWrapper.TypeGlobal sojourn
public static final PerformanceWrapper.TypeGlobal duration
public static PerformanceWrapper.TypeGlobal[] values()
for (PerformanceWrapper.TypeGlobal c : PerformanceWrapper.TypeGlobal.values()) System.out.println(c);
public static PerformanceWrapper.TypeGlobal 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 abstract java.lang.String toString()
toString
in class java.lang.Enum<PerformanceWrapper.TypeGlobal>