public static enum SwipeActionsBehavior.SwipeDockMode extends Enum<SwipeActionsBehavior.SwipeDockMode>
Enum Constant and Description |
---|
DockAtLimit
When a swipe limit is defined in either direction, once released beyond the specified threshold
for that direction, the item docks at the specified limit.
|
DockAtThreshold
When a swipe threshold is defined in either direction, once released beyond the specified threshold
for that direction, the item docks at the threshold.
|
Modifier and Type | Method and Description |
---|---|
static SwipeActionsBehavior.SwipeDockMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SwipeActionsBehavior.SwipeDockMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwipeActionsBehavior.SwipeDockMode DockAtLimit
public static final SwipeActionsBehavior.SwipeDockMode DockAtThreshold
public static SwipeActionsBehavior.SwipeDockMode[] values()
for (SwipeActionsBehavior.SwipeDockMode c : SwipeActionsBehavior.SwipeDockMode.values()) System.out.println(c);
public static SwipeActionsBehavior.SwipeDockMode 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