public enum CallbackEvent extends Enum<CallbackEvent>
| Enum Constant and Description |
|---|
DELETED_FEATURE |
ERROR |
LOADED |
UPDATED_FEATURE |
| Modifier and Type | Method and Description |
|---|---|
static CallbackEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CallbackEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CallbackEvent LOADED
public static final CallbackEvent ERROR
public static final CallbackEvent UPDATED_FEATURE
public static final CallbackEvent DELETED_FEATURE
public static CallbackEvent[] values()
for (CallbackEvent c : CallbackEvent.values()) System.out.println(c);
public static CallbackEvent 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.