public static enum TabbedSplitPane.DnDAction extends Enum<TabbedSplitPane.DnDAction>
Enum Constant and Description |
---|
MOVE_TABS
Drag & Drop of tabs allows to move tabs between panes
(and of course also within the same pane).
|
NONE
Drag & Drop of tabs is disabled.
|
REORDER_TABS
Drag & Drop of tabs allows to reorder tabs within the same pane.
|
Modifier and Type | Method and Description |
---|---|
static TabbedSplitPane.DnDAction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TabbedSplitPane.DnDAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TabbedSplitPane.DnDAction NONE
public static final TabbedSplitPane.DnDAction REORDER_TABS
public static final TabbedSplitPane.DnDAction MOVE_TABS
public static TabbedSplitPane.DnDAction[] values()
for (TabbedSplitPane.DnDAction c : TabbedSplitPane.DnDAction.values()) System.out.println(c);
public static TabbedSplitPane.DnDAction 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 null