protected static enum SaveEvent.EventType extends Enum<SaveEvent.EventType>
| Enum Constant and Description |
|---|
SAVE |
SAVE_FAILURE |
SAVE_SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static SaveEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveEvent.EventType SAVE
public static final SaveEvent.EventType SAVE_SUCCESS
public static final SaveEvent.EventType SAVE_FAILURE
public static SaveEvent.EventType[] values()
for (SaveEvent.EventType c : SaveEvent.EventType.values()) System.out.println(c);
public static SaveEvent.EventType 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 © 2014. All Rights Reserved.