public enum IndexLockMode extends Enum<IndexLockMode>
Enum Constant and Description |
---|
LOCKED_ERROR |
LOCKED_IGNORE |
SIDE_BY_SIDE |
UNLOCK |
Modifier and Type | Method and Description |
---|---|
static IndexLockMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndexLockMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndexLockMode UNLOCK
public static final IndexLockMode LOCKED_IGNORE
public static final IndexLockMode LOCKED_ERROR
public static final IndexLockMode SIDE_BY_SIDE
public static IndexLockMode[] values()
for (IndexLockMode c : IndexLockMode.values()) System.out.println(c);
public static IndexLockMode 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 © 2016. All Rights Reserved.