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