public static enum AbstractDragTabsEventHandler.DragState extends java.lang.Enum<AbstractDragTabsEventHandler.DragState>
TabSwitcher
.Enum Constant and Description |
---|
DRAG_TO_END
When the tabs are dragged towards the end.
|
DRAG_TO_START
When the tabs are dragged towards the start.
|
NONE
When no dragging gesture is being performed.
|
OVERSHOOT_END
When an overshoot at the end is being performed.
|
OVERSHOOT_START
When an overshoot at the start is being performed.
|
PULLING_DOWN
When the currently selected tab is pulled down.
|
SWIPE
When a tab is swiped.
|
Modifier and Type | Method and Description |
---|---|
static AbstractDragTabsEventHandler.DragState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractDragTabsEventHandler.DragState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractDragTabsEventHandler.DragState NONE
public static final AbstractDragTabsEventHandler.DragState DRAG_TO_START
public static final AbstractDragTabsEventHandler.DragState DRAG_TO_END
public static final AbstractDragTabsEventHandler.DragState OVERSHOOT_START
public static final AbstractDragTabsEventHandler.DragState OVERSHOOT_END
public static final AbstractDragTabsEventHandler.DragState SWIPE
public static final AbstractDragTabsEventHandler.DragState PULLING_DOWN
public static AbstractDragTabsEventHandler.DragState[] values()
for (AbstractDragTabsEventHandler.DragState c : AbstractDragTabsEventHandler.DragState.values()) System.out.println(c);
public static AbstractDragTabsEventHandler.DragState 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