public enum LogFileState extends java.lang.Enum<LogFileState>
| Enum Constant and Description |
|---|
AVAILABLE
Available
|
ERROR
Error determining state
|
NOT_FOUND
Not found at all
|
PENDING
In process of being transferred to local storage
|
| Modifier and Type | Method and Description |
|---|---|
static LogFileState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LogFileState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LogFileState NOT_FOUND
public static final LogFileState AVAILABLE
public static final LogFileState PENDING
public static final LogFileState ERROR
public static LogFileState[] values()
for (LogFileState c : LogFileState.values()) System.out.println(c);
public static LogFileState 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