public enum Multitouch extends java.lang.Enum<Multitouch>
| Enum Constant and Description |
|---|
BASIC |
DISTINCT |
JAZZ_HANDS |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static Multitouch |
getEnum(java.lang.String val) |
java.lang.String |
toString() |
static Multitouch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Multitouch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Multitouch NONE
public static final Multitouch BASIC
public static final Multitouch DISTINCT
public static final Multitouch JAZZ_HANDS
public static Multitouch[] values()
for (Multitouch c : Multitouch.values()) System.out.println(c);
public static Multitouch 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@Nullable public static Multitouch getEnum(@NonNull java.lang.String val)
public java.lang.String toString()
toString in class java.lang.Enum<Multitouch>