public static enum Simulate.With extends java.lang.Enum<Simulate.With>
Enum Constant and Description |
---|
GLOBAL_CLOCK
Calls to FBUtilities.timestampMicros() will be guaranteed globally monotonically increasing.
|
LOCK_SUPPORT
Usages of LockSupport.
|
MONITORS
synchronized methods and blocks, and wait/notify.
|
Modifier and Type | Method and Description |
---|---|
static Simulate.With |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Simulate.With[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Simulate.With GLOBAL_CLOCK
public static final Simulate.With MONITORS
public static final Simulate.With LOCK_SUPPORT
public static Simulate.With[] values()
for (Simulate.With c : Simulate.With.values()) System.out.println(c);
public static Simulate.With 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 nullCopyright © 2009- The Apache Software Foundation