public enum LockOptionValues extends java.lang.Enum<LockOptionValues>
List of lock option defined on the Folder
Modifier and Type | Method and Description |
---|---|
static LockOptionValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LockOptionValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LockOptionValues _N
N : no lock option
public static final LockOptionValues _O
O: optimistic lock mode
public static final LockOptionValues _P
P: pessimistic lock mode
public static final LockOptionValues NONE
NONE: Returns the value entered in the Dialog Folder
public static LockOptionValues 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 nullpublic static LockOptionValues[] values()
for (LockOptionValues c : LockOptionValues.values()) System.out.println(c);