Enum EntranceAnimation
- java.lang.Object
-
- java.lang.Enum<EntranceAnimation>
-
- org.teamapps.ux.component.animation.EntranceAnimation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EntranceAnimation>
public enum EntranceAnimation extends java.lang.Enum<EntranceAnimation>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiEntranceAnimationtoUiEntranceAnimation()static EntranceAnimationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EntranceAnimation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIGHTSPEED_IN
public static final EntranceAnimation LIGHTSPEED_IN
-
ROLL_IN
public static final EntranceAnimation ROLL_IN
-
ZOOM_IN
public static final EntranceAnimation ZOOM_IN
-
ZOOM_IN_DOWN
public static final EntranceAnimation ZOOM_IN_DOWN
-
ZOOM_IN_LEFT
public static final EntranceAnimation ZOOM_IN_LEFT
-
ZOOM_IN_RIGHT
public static final EntranceAnimation ZOOM_IN_RIGHT
-
ZOOM_IN_UP
public static final EntranceAnimation ZOOM_IN_UP
-
SLIDE_IN_UP
public static final EntranceAnimation SLIDE_IN_UP
-
SLIDE_IN_DOWN
public static final EntranceAnimation SLIDE_IN_DOWN
-
SLIDE_IN_LEFT
public static final EntranceAnimation SLIDE_IN_LEFT
-
SLIDE_IN_RIGHT
public static final EntranceAnimation SLIDE_IN_RIGHT
-
ROTATE_IN
public static final EntranceAnimation ROTATE_IN
-
ROTATE_IN_DOWNLEFT
public static final EntranceAnimation ROTATE_IN_DOWNLEFT
-
ROTATE_IN_DOWNRIGHT
public static final EntranceAnimation ROTATE_IN_DOWNRIGHT
-
ROTATE_IN_UPLEFT
public static final EntranceAnimation ROTATE_IN_UPLEFT
-
ROTATE_IN_UPRIGHT
public static final EntranceAnimation ROTATE_IN_UPRIGHT
-
FLIP_IN_X
public static final EntranceAnimation FLIP_IN_X
-
FLIP_IN_Y
public static final EntranceAnimation FLIP_IN_Y
-
FADE_IN
public static final EntranceAnimation FADE_IN
-
FADE_IN_DOWN
public static final EntranceAnimation FADE_IN_DOWN
-
FADE_IN_DOWNBIG
public static final EntranceAnimation FADE_IN_DOWNBIG
-
FADE_IN_LEFT
public static final EntranceAnimation FADE_IN_LEFT
-
FADE_IN_LEFTBIG
public static final EntranceAnimation FADE_IN_LEFTBIG
-
FADE_IN_RIGHT
public static final EntranceAnimation FADE_IN_RIGHT
-
FADE_IN_RIGHTBIG
public static final EntranceAnimation FADE_IN_RIGHTBIG
-
FADE_IN_UP
public static final EntranceAnimation FADE_IN_UP
-
FADE_IN_UPBIG
public static final EntranceAnimation FADE_IN_UPBIG
-
BOUNCE_IN
public static final EntranceAnimation BOUNCE_IN
-
BOUNCE_IN_DOWN
public static final EntranceAnimation BOUNCE_IN_DOWN
-
BOUNCE_IN_LEFT
public static final EntranceAnimation BOUNCE_IN_LEFT
-
BOUNCE_IN_RIGHT
public static final EntranceAnimation BOUNCE_IN_RIGHT
-
BOUNCE_IN_UP
public static final EntranceAnimation BOUNCE_IN_UP
-
-
Method Detail
-
values
public static EntranceAnimation[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EntranceAnimation c : EntranceAnimation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntranceAnimation valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
toUiEntranceAnimation
public org.teamapps.dto.UiEntranceAnimation toUiEntranceAnimation()
-
-