private static enum KeyPressGenerator.ParseState extends Enum<KeyPressGenerator.ParseState>
| Enum Constant and Description | 
|---|
| ESCAPE | 
| ESCAPE_SEQUENCE_PARAM1 | 
| ESCAPE_SEQUENCE_PARAM2 | 
| START | 
| Modifier and Type | Method and Description | 
|---|---|
| static KeyPressGenerator.ParseState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static KeyPressGenerator.ParseState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KeyPressGenerator.ParseState START
public static final KeyPressGenerator.ParseState ESCAPE
public static final KeyPressGenerator.ParseState ESCAPE_SEQUENCE_PARAM1
public static final KeyPressGenerator.ParseState ESCAPE_SEQUENCE_PARAM2
public static KeyPressGenerator.ParseState[] values()
for (KeyPressGenerator.ParseState c : KeyPressGenerator.ParseState.values()) System.out.println(c);
public static KeyPressGenerator.ParseState 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–2021 The Apache Software Foundation. All rights reserved.