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