public enum Action extends Enum<Action>
| Enum Constant and Description |
|---|
CLEAR |
COLLECT |
CSI_DISPATCH |
DCS_HOOK |
DCS_PUT |
DCS_UNHOOK |
ERROR |
ESC_DISPATCH |
EXECUTE |
IGNORE |
OSC_END |
OSC_PUT |
OSC_START |
PARAM |
PRINT |
| Modifier and Type | Method and Description |
|---|---|
static Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Action CLEAR
public static final Action COLLECT
public static final Action CSI_DISPATCH
public static final Action DCS_HOOK
public static final Action DCS_PUT
public static final Action DCS_UNHOOK
public static final Action ERROR
public static final Action ESC_DISPATCH
public static final Action EXECUTE
public static final Action IGNORE
public static final Action OSC_END
public static final Action OSC_PUT
public static final Action OSC_START
public static final Action PARAM
public static final Action PRINT
public static Action[] values()
for (Action c : Action.values()) System.out.println(c);
public static Action 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.