public static enum Locking.WaitingMode extends java.lang.Enum<Locking.WaitingMode>
| Enum Constant | Description |
|---|---|
NOWAIT |
|
SKIP_LOCKED |
| Modifier and Type | Method | Description |
|---|---|---|
static Locking.WaitingMode |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Locking.WaitingMode[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Locking.WaitingMode NOWAIT
public static final Locking.WaitingMode SKIP_LOCKED
public static Locking.WaitingMode[] values()
for (Locking.WaitingMode c : Locking.WaitingMode.values()) System.out.println(c);
public static Locking.WaitingMode 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