public static enum CliInputView.InputOperation extends Enum<CliInputView.InputOperation>
Enum Constant and Description |
---|
BACKSPACE |
ENTER |
INSERT |
LEFT |
QUIT |
RIGHT |
Modifier and Type | Method and Description |
---|---|
static CliInputView.InputOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CliInputView.InputOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CliInputView.InputOperation QUIT
public static final CliInputView.InputOperation INSERT
public static final CliInputView.InputOperation ENTER
public static final CliInputView.InputOperation LEFT
public static final CliInputView.InputOperation RIGHT
public static final CliInputView.InputOperation BACKSPACE
public static CliInputView.InputOperation[] values()
for (CliInputView.InputOperation c : CliInputView.InputOperation.values()) System.out.println(c);
public static CliInputView.InputOperation 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 © 2014–2021 The Apache Software Foundation. All rights reserved.