public static enum DndTabPaneFactory.DropType extends java.lang.Enum<DndTabPaneFactory.DropType>
| Enum Constant and Description |
|---|
AFTER
Dropped after a reference tab
|
BEFORE
Dropped before a reference tab
|
DETACH
Dropped in an area to detach
|
NONE
No dropping
|
| Modifier and Type | Method and Description |
|---|---|
static DndTabPaneFactory.DropType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DndTabPaneFactory.DropType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DndTabPaneFactory.DropType NONE
public static final DndTabPaneFactory.DropType BEFORE
public static final DndTabPaneFactory.DropType AFTER
public static final DndTabPaneFactory.DropType DETACH
public static DndTabPaneFactory.DropType[] values()
for (DndTabPaneFactory.DropType c : DndTabPaneFactory.DropType.values()) System.out.println(c);
public static DndTabPaneFactory.DropType 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