private static enum SaveLayersDialog.UserAction extends java.lang.Enum<SaveLayersDialog.UserAction>
| Enum Constant and Description |
|---|
CANCEL
save/upload of layers was not successful or user canceled operation
|
PROCEED
save/upload layers was successful, proceed with operation
|
| Modifier and Type | Method and Description |
|---|---|
static SaveLayersDialog.UserAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SaveLayersDialog.UserAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveLayersDialog.UserAction PROCEED
public static final SaveLayersDialog.UserAction CANCEL
public static SaveLayersDialog.UserAction[] values()
for (SaveLayersDialog.UserAction c : SaveLayersDialog.UserAction.values()) System.out.println(c);
public static SaveLayersDialog.UserAction 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