public enum ARTouchType extends java.lang.Enum<ARTouchType>
Enum Constant and Description |
---|
End
Touch release action.
|
Move
Pressed movement action.
|
Start
Touch press action.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the internal numeric constant representation of the entry.
|
static ARTouchType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ARTouchType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ARTouchType Start
public static final ARTouchType Move
public static final ARTouchType End
public static ARTouchType[] values()
for (ARTouchType c : ARTouchType.values()) System.out.println(c);
public static ARTouchType 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 int getType()