public enum MenuAnimation extends java.lang.Enum<MenuAnimation>
| Enum Constant and Description |
|---|
DROP_DOWN |
ELASTIC_BOTTOM_LEFT |
ELASTIC_BOTTOM_RIGHT |
ELASTIC_CENTER |
ELASTIC_TOP_LEFT |
ELASTIC_TOP_RIGHT |
FADE |
NONE |
SHOW_UP_CENTER |
SHOWUP_BOTTOM_LEFT |
SHOWUP_BOTTOM_RIGHT |
SHOWUP_TOP_LEFT |
SHOWUP_TOP_RIGHT |
| Modifier and Type | Method and Description |
|---|---|
static MenuAnimation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MenuAnimation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MenuAnimation SHOWUP_TOP_RIGHT
public static final MenuAnimation SHOWUP_TOP_LEFT
public static final MenuAnimation SHOWUP_BOTTOM_RIGHT
public static final MenuAnimation SHOWUP_BOTTOM_LEFT
public static final MenuAnimation SHOW_UP_CENTER
public static final MenuAnimation ELASTIC_TOP_RIGHT
public static final MenuAnimation ELASTIC_TOP_LEFT
public static final MenuAnimation ELASTIC_BOTTOM_RIGHT
public static final MenuAnimation ELASTIC_BOTTOM_LEFT
public static final MenuAnimation ELASTIC_CENTER
public static final MenuAnimation FADE
public static final MenuAnimation DROP_DOWN
public static final MenuAnimation NONE
public static MenuAnimation[] values()
for (MenuAnimation c : MenuAnimation.values()) System.out.println(c);
public static MenuAnimation 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