public enum EventState extends Enum<EventState>
| Enum Constant and Description |
|---|
CANCELED |
COMPLETED |
DEFERRED |
PLANIFIED |
| Modifier and Type | Method and Description |
|---|---|
static EventState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EventState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EventState PLANIFIED
public static final EventState COMPLETED
public static final EventState CANCELED
public static final EventState DEFERRED
public static EventState[] values()
for (EventState c : EventState.values()) System.out.println(c);
public static EventState 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 © 2018. All rights reserved.