public enum ELockMode extends Enum<ELockMode>
Enum Constant and Description |
---|
accessExclusive |
accessShare |
exclusive |
rowExclusive |
rowShare |
shared |
shareRowExclusive |
Modifier and Type | Method and Description |
---|---|
static ELockMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ELockMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ELockMode accessShare
public static final ELockMode rowExclusive
public static final ELockMode shareRowExclusive
public static final ELockMode accessExclusive
public static ELockMode[] values()
for (ELockMode c : ELockMode.values()) System.out.println(c);
public static ELockMode 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