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