public static enum SaveLayersDialog.UserAction extends 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(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(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 null