public enum Action extends Enum<Action>
Enum Constant and Description |
---|
ABORT |
CASE |
CHANGE |
CHANGE_EDITMODE |
CLEAR |
COMMAND |
COMPLETE |
DELETE |
EDIT |
EOF |
EXIT |
HISTORY |
IGNOREEOF |
INTERRUPT |
MOVE |
NEWLINE |
NO_ACTION |
PASTE |
PASTE_FROM_CLIPBOARD |
REPLACE |
SEARCH |
UNDO |
YANK |
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 DELETE
public static final Action MOVE
public static final Action YANK
public static final Action CHANGE
public static final Action EDIT
public static final Action COMMAND
public static final Action HISTORY
public static final Action SEARCH
public static final Action NEWLINE
public static final Action PASTE
public static final Action PASTE_FROM_CLIPBOARD
public static final Action COMPLETE
public static final Action UNDO
public static final Action CASE
public static final Action EXIT
public static final Action CLEAR
public static final Action ABORT
public static final Action CHANGE_EDITMODE
public static final Action NO_ACTION
public static final Action REPLACE
public static final Action INTERRUPT
public static final Action IGNOREEOF
public static final Action EOF
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 © 2020 JBoss, a division of Red Hat, Inc.. All Rights Reserved.