| Enum Constant and Description |
|---|
fade
渐变
|
none
没有动画
|
present
由下到上动画
|
slide
从左到右动画
|
zoom
放大
|
| Modifier and Type | Method and Description |
|---|---|
static CoreAnim |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CoreAnim[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoreAnim none
public static final CoreAnim present
public static final CoreAnim slide
public static final CoreAnim fade
public static final CoreAnim zoom
public static CoreAnim[] values()
for (CoreAnim c : CoreAnim.values()) System.out.println(c);
public static CoreAnim 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