public static enum Procedure.LockState extends Enum<Procedure.LockState>
Enum Constant and Description |
---|
LOCK_ACQUIRED |
LOCK_EVENT_WAIT |
LOCK_YIELD_WAIT |
Modifier and Type | Method and Description |
---|---|
static Procedure.LockState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Procedure.LockState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Procedure.LockState LOCK_ACQUIRED
public static final Procedure.LockState LOCK_YIELD_WAIT
public static final Procedure.LockState LOCK_EVENT_WAIT
public static Procedure.LockState[] values()
for (Procedure.LockState c : Procedure.LockState.values()) System.out.println(c);
public static Procedure.LockState 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 nullCopyright © 2007–2020 The Apache Software Foundation. All rights reserved.