public static enum GameView.UIEventType extends java.lang.Enum<GameView.UIEventType>
Enum Constant and Description |
---|
Down |
Fling |
LongPress |
Scroll |
ShowPress |
SingleTapUp |
Modifier and Type | Method and Description |
---|---|
static GameView.UIEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GameView.UIEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GameView.UIEventType Down
public static final GameView.UIEventType ShowPress
public static final GameView.UIEventType SingleTapUp
public static final GameView.UIEventType Scroll
public static final GameView.UIEventType LongPress
public static final GameView.UIEventType Fling
public static GameView.UIEventType[] values()
for (GameView.UIEventType c : GameView.UIEventType.values()) System.out.println(c);
public static GameView.UIEventType 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 null