public enum RecognizerEvent extends Enum<RecognizerEvent>
| Enum Constant and Description |
|---|
END_OF_INPUT |
ESCAPE |
NEWLINE |
QUIT |
| Modifier and Type | Method and Description |
|---|---|
static RecognizerEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecognizerEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecognizerEvent END_OF_INPUT
public static final RecognizerEvent ESCAPE
public static final RecognizerEvent NEWLINE
public static final RecognizerEvent QUIT
public static RecognizerEvent[] values()
for (RecognizerEvent c : RecognizerEvent.values()) System.out.println(c);
public static RecognizerEvent 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 © 2007-2012 fortytwo.net. All Rights Reserved.