public static enum SyntheticOptions.DelayType extends java.lang.Enum<SyntheticOptions.DelayType>
CPU delay produces a CPU-busy delay. SLEEP delay makes the process sleep.
| Modifier and Type | Method and Description |
|---|---|
static SyntheticOptions.DelayType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SyntheticOptions.DelayType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SyntheticOptions.DelayType SLEEP
public static final SyntheticOptions.DelayType CPU
public static final SyntheticOptions.DelayType MIXED
public static SyntheticOptions.DelayType[] values()
for (SyntheticOptions.DelayType c : SyntheticOptions.DelayType.values()) System.out.println(c);
public static SyntheticOptions.DelayType 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