public enum UploadOrSaveState extends java.lang.Enum<UploadOrSaveState>
| Enum Constant and Description |
|---|
CANCELED
uploading or saving a data layer was canceled
|
FAILED
uploading or saving a data layer has failed
|
OK
a data layer was successfully saved or upload to the server
|
| Modifier and Type | Method and Description |
|---|---|
static UploadOrSaveState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static UploadOrSaveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UploadOrSaveState OK
public static final UploadOrSaveState FAILED
public static final UploadOrSaveState CANCELED
public static UploadOrSaveState[] values()
for (UploadOrSaveState c : UploadOrSaveState.values()) System.out.println(c);
public static UploadOrSaveState 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