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