public static enum SaveConfirmController.ConfirmResult extends Enum<SaveConfirmController.ConfirmResult>
| Enum Constant and Description |
|---|
CANCEL
Operation should be cancelled.
|
DISCARD
Changes should be discarded.
|
SAVE
Project should be saved.
|
| Modifier and Type | Method and Description |
|---|---|
static SaveConfirmController.ConfirmResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveConfirmController.ConfirmResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveConfirmController.ConfirmResult SAVE
public static final SaveConfirmController.ConfirmResult DISCARD
public static final SaveConfirmController.ConfirmResult CANCEL
public static SaveConfirmController.ConfirmResult[] values()
for (SaveConfirmController.ConfirmResult c : SaveConfirmController.ConfirmResult.values()) System.out.println(c);
public static SaveConfirmController.ConfirmResult 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 © 2015 illucIT Software GmbH. All rights reserved.