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