Enum ExitAnimation
- java.lang.Object
-
- java.lang.Enum<ExitAnimation>
-
- org.teamapps.ux.component.animation.ExitAnimation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExitAnimation>
public enum ExitAnimation extends java.lang.Enum<ExitAnimation>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiExitAnimationtoUiExitAnimation()static ExitAnimationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExitAnimation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LIGHTSPEED_OUT
public static final ExitAnimation LIGHTSPEED_OUT
-
ROLL_OUT
public static final ExitAnimation ROLL_OUT
-
HINGE
public static final ExitAnimation HINGE
-
ZOOM_OUT
public static final ExitAnimation ZOOM_OUT
-
ZOOM_OUT_DOWN
public static final ExitAnimation ZOOM_OUT_DOWN
-
ZOOM_OUT_LEFT
public static final ExitAnimation ZOOM_OUT_LEFT
-
ZOOM_OUT_RIGHT
public static final ExitAnimation ZOOM_OUT_RIGHT
-
ZOOM_OUT_UP
public static final ExitAnimation ZOOM_OUT_UP
-
SLIDE_OUT_UP
public static final ExitAnimation SLIDE_OUT_UP
-
SLIDE_OUT_DOWN
public static final ExitAnimation SLIDE_OUT_DOWN
-
SLIDE_OUT_LEFT
public static final ExitAnimation SLIDE_OUT_LEFT
-
SLIDE_OUT_RIGHT
public static final ExitAnimation SLIDE_OUT_RIGHT
-
ROTATE_OUT
public static final ExitAnimation ROTATE_OUT
-
ROTATE_OUT_DOWNLEFT
public static final ExitAnimation ROTATE_OUT_DOWNLEFT
-
ROTATE_OUT_DOWNRIGHT
public static final ExitAnimation ROTATE_OUT_DOWNRIGHT
-
ROTATE_OUT_UPLEFT
public static final ExitAnimation ROTATE_OUT_UPLEFT
-
ROTATE_OUT_UPRIGHT
public static final ExitAnimation ROTATE_OUT_UPRIGHT
-
FLIP_OUT_X
public static final ExitAnimation FLIP_OUT_X
-
FLIP_OUT_Y
public static final ExitAnimation FLIP_OUT_Y
-
FADE_OUT
public static final ExitAnimation FADE_OUT
-
FADE_OUT_DOWN
public static final ExitAnimation FADE_OUT_DOWN
-
FADE_OUT_DOWNBIG
public static final ExitAnimation FADE_OUT_DOWNBIG
-
FADE_OUT_LEFT
public static final ExitAnimation FADE_OUT_LEFT
-
FADE_OUT_LEFTBIG
public static final ExitAnimation FADE_OUT_LEFTBIG
-
FADE_OUT_RIGHT
public static final ExitAnimation FADE_OUT_RIGHT
-
FADE_OUT_RIGHTBIG
public static final ExitAnimation FADE_OUT_RIGHTBIG
-
FADE_OUT_UP
public static final ExitAnimation FADE_OUT_UP
-
FADE_OUT_UPBIG
public static final ExitAnimation FADE_OUT_UPBIG
-
BOUNCE_OUT
public static final ExitAnimation BOUNCE_OUT
-
BOUNCE_OUT_DOWN
public static final ExitAnimation BOUNCE_OUT_DOWN
-
BOUNCE_OUT_LEFT
public static final ExitAnimation BOUNCE_OUT_LEFT
-
BOUNCE_OUT_RIGHT
public static final ExitAnimation BOUNCE_OUT_RIGHT
-
BOUNCE_OUT_UP
public static final ExitAnimation BOUNCE_OUT_UP
-
-
Method Detail
-
values
public static ExitAnimation[] 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 (ExitAnimation c : ExitAnimation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExitAnimation 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
-
toUiExitAnimation
public org.teamapps.dto.UiExitAnimation toUiExitAnimation()
-
-