protected static enum AbstractRecognizer.State extends Enum<AbstractRecognizer.State>
Enum Constant and Description |
---|
FINDER_DOWN |
FINGERS_DOWN |
FINGERS_UP |
FOUND_DIRECTION |
INVALID |
ONE_FINGER |
READY |
TWO_FINGER |
WAITING |
Modifier and Type | Method and Description |
---|---|
static AbstractRecognizer.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractRecognizer.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractRecognizer.State INVALID
public static final AbstractRecognizer.State READY
public static final AbstractRecognizer.State FINDER_DOWN
public static final AbstractRecognizer.State FINGERS_DOWN
public static final AbstractRecognizer.State WAITING
public static final AbstractRecognizer.State FINGERS_UP
public static final AbstractRecognizer.State ONE_FINGER
public static final AbstractRecognizer.State TWO_FINGER
public static final AbstractRecognizer.State FOUND_DIRECTION
public static AbstractRecognizer.State[] values()
for (AbstractRecognizer.State c : AbstractRecognizer.State.values()) System.out.println(c);
public static AbstractRecognizer.State 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 © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.