public enum BannerAnimType extends java.lang.Enum<BannerAnimType>
| Enum Constant and Description |
|---|
BOTTOM_SLIDE |
CIRCLE |
FADE_IN |
NONE |
SLIDE_LEFT |
SLIDE_RIGHT |
TOP_SLIDE |
| Modifier and Type | Method and Description |
|---|---|
int |
getValue() |
static BannerAnimType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BannerAnimType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BannerAnimType NONE
public static final BannerAnimType FADE_IN
public static final BannerAnimType SLIDE_LEFT
public static final BannerAnimType SLIDE_RIGHT
public static final BannerAnimType TOP_SLIDE
public static final BannerAnimType BOTTOM_SLIDE
public static final BannerAnimType CIRCLE
public static BannerAnimType[] values()
for (BannerAnimType c : BannerAnimType.values()) System.out.println(c);
public static BannerAnimType 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 nullpublic int getValue()