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