public static enum Event.EventDecision extends java.lang.Enum<Event.EventDecision>
| Enum Constant and Description |
|---|
ATTENDING
Events that user decided to attend
|
CREATED
Events that user created
|
DECLINED
Events that user declined
|
MAYBE
Events that user said maybe
|
NOT_REPLIED
Events that user not replied
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getGraphNode() |
static Event.EventDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Event.EventDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.EventDecision ATTENDING
public static final Event.EventDecision MAYBE
public static final Event.EventDecision CREATED
public static final Event.EventDecision NOT_REPLIED
public static final Event.EventDecision DECLINED
public static Event.EventDecision[] values()
for (Event.EventDecision c : Event.EventDecision.values()) System.out.println(c);
public static Event.EventDecision valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getGraphNode()