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