public enum AnimationEffect extends java.lang.Enum<AnimationEffect> implements ValueEnum
| Enum Constant and Description |
|---|
FADE widget's opacity smoothly fades into or out of view |
FLY widget moves into position from offscreen |
SLIDE content slides into or out of view as the widget grows or shrinks |
WIPE content is revealed or wiped as the widget grows or shrinks |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String | getValue() |
static AnimationEffect | valueOf(java.lang.String name) Returns the enum constant of this type with the specified name. |
static AnimationEffect[] | values() Returns an array containing the constants of this enum type, in the order they are declared. |
public static final AnimationEffect SLIDE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "slide".
public static final AnimationEffect WIPE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "wipe".
public static final AnimationEffect FADE
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "fade".
public static final AnimationEffect FLY
If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "fly".
public static AnimationEffect[] values()
for (AnimationEffect c : AnimationEffect.values()) System.out.println(c);
public static AnimationEffect 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