public enum AnimationType extends Enum<AnimationType>
| Enum Constant and Description |
|---|
CSS_ANIMATION |
CSS_TRANSITION |
WEB_ANIMATION |
| Modifier and Type | Method and Description |
|---|---|
static AnimationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnimationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnimationType CSS_TRANSITION
public static final AnimationType CSS_ANIMATION
public static final AnimationType WEB_ANIMATION
public static AnimationType[] values()
for (AnimationType c : AnimationType.values()) System.out.println(c);
public static AnimationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2020. All rights reserved.