public static enum SaveFileListener.EventType extends Enum<SaveFileListener.EventType>
Enum Constant and Description |
---|
EXCEPTION_OCCURRED
additionalArguments represents the actual exception (an
instance of StorageException). |
SAVE_COMPLETE
File saved successfully.
|
Modifier and Type | Method and Description |
---|---|
static SaveFileListener.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaveFileListener.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaveFileListener.EventType SAVE_COMPLETE
public static final SaveFileListener.EventType EXCEPTION_OCCURRED
additionalArguments
represents the actual exception (an
instance of StorageException). It is safe to dispose the data source at this point.public static SaveFileListener.EventType[] values()
for (SaveFileListener.EventType c : SaveFileListener.EventType.values()) System.out.println(c);
public static SaveFileListener.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 © 2017. All rights reserved.