Enum Class AnimationEasing
- All Implemented Interfaces:
Serializable,Comparable<AnimationEasing>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDefault value.Specifies a transition effect with a slow start (equivalent to cubic-bezier(0.42,0,1,1))Specifies a transition effect with a slow start and end (equivalent to cubic-bezier(0.42,0,0.58,1))Specifies a transition effect with a slow end (equivalent to cubic-bezier(0,0,0.58,1))Specifies a transition effect with the same speed from start to end (equivalent to cubic-bezier(0,0,1,1))Equivalent to steps(1, end)Equivalent to steps(1, start) -
Method Summary
Modifier and TypeMethodDescriptionstatic AnimationEasingReturns the enum constant of this class with the specified name.static AnimationEasing[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EASE
Default value. Specifies a transition effect with a slow start, then fast, then end slowly (equivalent to cubic-bezier(0.25,0.1,0.25,1)) -
LINEAR
Specifies a transition effect with the same speed from start to end (equivalent to cubic-bezier(0,0,1,1)) -
EASE_IN
Specifies a transition effect with a slow start (equivalent to cubic-bezier(0.42,0,1,1)) -
EASE_OUT
Specifies a transition effect with a slow end (equivalent to cubic-bezier(0,0,0.58,1)) -
EASE_IN_OUT
Specifies a transition effect with a slow start and end (equivalent to cubic-bezier(0.42,0,0.58,1)) -
STEP_START
Equivalent to steps(1, start) -
STEP_END
Equivalent to steps(1, end)
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getCssString
-
toUiAnimationEasing
-