public static enum SwipeAnimation.SwipeDirection extends java.lang.Enum<SwipeAnimation.SwipeDirection>
Enum Constant and Description |
---|
LEFT_OR_TOP
When the tab should be moved to/from the left, respectively the top when in landscape
mode.
|
RIGHT_OR_BOTTOM
When the tab should be moved to/from the right, respectively the bottom when in landscape
mode.
|
Modifier and Type | Method and Description |
---|---|
static SwipeAnimation.SwipeDirection |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SwipeAnimation.SwipeDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SwipeAnimation.SwipeDirection LEFT_OR_TOP
public static final SwipeAnimation.SwipeDirection RIGHT_OR_BOTTOM
public static SwipeAnimation.SwipeDirection[] values()
for (SwipeAnimation.SwipeDirection c : SwipeAnimation.SwipeDirection.values()) System.out.println(c);
public static SwipeAnimation.SwipeDirection 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