public enum CycleType extends Enum<CycleType>
Enum Constant and Description |
---|
CYCLETIME
Inter-arrival time defines time between the begin of the previous operation
and the begin of the next operation.
|
THINKTIME
Think time defines the time between the end of the previous operation
and the begin of the next operation.
|
Modifier and Type | Method and Description |
---|---|
static CycleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CycleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CycleType THINKTIME
public static final CycleType CYCLETIME
public static CycleType[] values()
for (CycleType c : CycleType.values()) System.out.println(c);
public static CycleType 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 null