Enum RepeatableAnimation
- java.lang.Object
-
- java.lang.Enum<RepeatableAnimation>
-
- org.teamapps.ux.component.animation.RepeatableAnimation
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<RepeatableAnimation>
public enum RepeatableAnimation extends java.lang.Enum<RepeatableAnimation>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLINKBLINK_SUBTLEBOUNCEFLASHFLIPHEAD_SHAKEHEART_BEATJELLOPULSERUBBER_BANDSHAKE_XSHAKE_YSWINGTADAWOBBLE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description org.teamapps.dto.UiRepeatableAnimationtoUiRepeatableAnimation()static RepeatableAnimationvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static RepeatableAnimation[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOUNCE
public static final RepeatableAnimation BOUNCE
-
FLASH
public static final RepeatableAnimation FLASH
-
PULSE
public static final RepeatableAnimation PULSE
-
RUBBER_BAND
public static final RepeatableAnimation RUBBER_BAND
-
SHAKE_X
public static final RepeatableAnimation SHAKE_X
-
SHAKE_Y
public static final RepeatableAnimation SHAKE_Y
-
HEAD_SHAKE
public static final RepeatableAnimation HEAD_SHAKE
-
SWING
public static final RepeatableAnimation SWING
-
TADA
public static final RepeatableAnimation TADA
-
WOBBLE
public static final RepeatableAnimation WOBBLE
-
JELLO
public static final RepeatableAnimation JELLO
-
HEART_BEAT
public static final RepeatableAnimation HEART_BEAT
-
FLIP
public static final RepeatableAnimation FLIP
-
BLINK
public static final RepeatableAnimation BLINK
-
BLINK_SUBTLE
public static final RepeatableAnimation BLINK_SUBTLE
-
-
Method Detail
-
values
public static RepeatableAnimation[] 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 (RepeatableAnimation c : RepeatableAnimation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RepeatableAnimation 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
-
toUiRepeatableAnimation
public org.teamapps.dto.UiRepeatableAnimation toUiRepeatableAnimation()
-
-