public static enum TerminalInputListener.Key extends java.lang.Enum<TerminalInputListener.Key>
| Enum Constant and Description |
|---|
BackTab |
DownArrow |
End |
Enter |
EraseBack |
EraseForward |
Home |
LeftArrow |
PageDown |
PageUp |
RightArrow |
UpArrow |
| Modifier and Type | Method and Description |
|---|---|
static TerminalInputListener.Key |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TerminalInputListener.Key[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminalInputListener.Key Enter
public static final TerminalInputListener.Key UpArrow
public static final TerminalInputListener.Key DownArrow
public static final TerminalInputListener.Key LeftArrow
public static final TerminalInputListener.Key RightArrow
public static final TerminalInputListener.Key Home
public static final TerminalInputListener.Key End
public static final TerminalInputListener.Key EraseBack
public static final TerminalInputListener.Key EraseForward
public static final TerminalInputListener.Key BackTab
public static final TerminalInputListener.Key PageUp
public static final TerminalInputListener.Key PageDown
public static TerminalInputListener.Key[] values()
for (TerminalInputListener.Key c : TerminalInputListener.Key.values()) System.out.println(c);
public static TerminalInputListener.Key valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null