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