public static enum InputSelection.Reaction extends Enum<InputSelection.Reaction>
| Enum Constant and Description |
|---|
EXIT
Exit selection with no value (null).
|
SELECT
Select the entry.
|
STAY
Stay in the selection.
|
UPDATE_KEEP_ITEM
Stay in the selection and update entries (clear draw cache and
redraw all visible entries).
|
UPDATE_KEEP_POSITION
Stay in the selection and update entries (clear draw cache and
redraw all visible entries).
|
| Modifier and Type | Method and Description |
|---|---|
static InputSelection.Reaction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InputSelection.Reaction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InputSelection.Reaction SELECT
public static final InputSelection.Reaction EXIT
public static final InputSelection.Reaction STAY
public static final InputSelection.Reaction UPDATE_KEEP_ITEM
public static final InputSelection.Reaction UPDATE_KEEP_POSITION
public static InputSelection.Reaction[] values()
for (InputSelection.Reaction c : InputSelection.Reaction.values()) System.out.println(c);
public static InputSelection.Reaction 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 © 2016. All rights reserved.