public static enum Event.Status extends Enum<Event.Status>
| Modifier and Type | Method and Description |
|---|---|
static Event.Status |
fromValue(String value) |
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 DONE
public static final Event.Status PENDING
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 nullpublic static Event.Status fromValue(String value)
Copyright © 2009-2014 The Apache Software Foundation. All Rights Reserved.