public static enum CarouselView.DrawOrder extends java.lang.Enum<CarouselView.DrawOrder>
Enum Constant and Description |
---|
CenterBack
The center-most item is drawn at bottom-most.
|
CenterFront
The center-most item is drawn at top-most.
|
FirstBack
Draws in ascending order.
|
FirstFront
Draws in reversed order.
|
Modifier and Type | Method and Description |
---|---|
static CarouselView.DrawOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CarouselView.DrawOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CarouselView.DrawOrder FirstBack
public static final CarouselView.DrawOrder FirstFront
public static final CarouselView.DrawOrder CenterFront
public static final CarouselView.DrawOrder CenterBack
public static CarouselView.DrawOrder[] values()
for (CarouselView.DrawOrder c : CarouselView.DrawOrder.values()) System.out.println(c);
public static CarouselView.DrawOrder 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