public enum State extends Enum<State>
| Enum Constant and Description |
|---|
CSI_ENTRY |
CSI_IGNORE |
CSI_INTERMEDIATE |
CSI_PARAM |
DCS_ENTRY |
DCS_IGNORE |
DCS_INTERMEDIATE |
DCS_PARAM |
DCS_PASSTHROUGH |
ESCAPE |
ESCAPE_INTERMEDIATE |
GROUND |
OSC_STRING |
SOS_PM_APC_STRING |
| Modifier and Type | Method and Description |
|---|---|
static State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final State CSI_ENTRY
public static final State CSI_IGNORE
public static final State CSI_INTERMEDIATE
public static final State CSI_PARAM
public static final State DCS_ENTRY
public static final State DCS_IGNORE
public static final State DCS_INTERMEDIATE
public static final State DCS_PARAM
public static final State DCS_PASSTHROUGH
public static final State ESCAPE
public static final State ESCAPE_INTERMEDIATE
public static final State GROUND
public static final State OSC_STRING
public static final State SOS_PM_APC_STRING
public static State[] values()
for (State c : State.values()) System.out.println(c);
public static 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 © 2018. All rights reserved.