public static enum MoveFocusAction.Direction extends Enum<MoveFocusAction.Direction>
Enum Constant and Description |
---|
ABOVE
A value that will make the action focus the cell above the currently
focused cell.
|
BELOW
A value that will make the action focus the cell below the currently
focused cell.
|
BOTTOM
A value that will make the action focus on the last cell in the key
column.
|
HOME
A value that will make the action focus on the first cell in the key
column.
|
NEXT
A value that will make the action focus the cell to the right of the
currently focused cell.
|
NEXT_TABLE
A value that will make the action focus on a cell in the same column
and the first visible row of the next table.
|
PAGE_DOWN
A value that will make the action focus on a cell in the same column
so that the table will scroll down one page.
|
PAGE_UP
A value that will make the action focus on a cell in the same column
so that the table will scroll up one page.
|
PREVIOUS
A value that will make the action focus the cell to the left of the
currently focused cell.
|
PREVIOUS_TABLE
A value that will make the action focus on a cell in the same column
and the first visible row of the previous table.
|
Modifier and Type | Method and Description |
---|---|
static MoveFocusAction.Direction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MoveFocusAction.Direction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MoveFocusAction.Direction ABOVE
public static final MoveFocusAction.Direction BELOW
public static final MoveFocusAction.Direction PREVIOUS
public static final MoveFocusAction.Direction NEXT
public static final MoveFocusAction.Direction HOME
public static final MoveFocusAction.Direction BOTTOM
public static final MoveFocusAction.Direction PAGE_DOWN
public static final MoveFocusAction.Direction PAGE_UP
public static final MoveFocusAction.Direction NEXT_TABLE
public static final MoveFocusAction.Direction PREVIOUS_TABLE
public static MoveFocusAction.Direction[] values()
for (MoveFocusAction.Direction c : MoveFocusAction.Direction.values()) System.out.println(c);
public static MoveFocusAction.Direction 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 © 2006–2020 Dirk Lemmermann Software & Consulting. All rights reserved.