EasingFunction (API Reference)
Package com.here.sdk.animation
Enum Class EasingFunction
- All Implemented Interfaces:
Serializable,Comparable<EasingFunction>,Constable
Animation easing functions.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIn blackIn bounceIn circIn qubicIn elasticIn expIn out blackIn out bounceIn out circIn out cubicIn out elasticIn out expIn out quadIn out quartIn out quintIn out sineIn quadIn quartIn quintIn sineLinearOut blackOut bounceOut circOut cubicOut elasticOut expOut in blackOut in bounceOut in circOut in cubicOut in elasticOut in expOut in quadOut in quartOut in quintOut in sineOut quadOut quartOut quintOut sine -
Method Summary
Modifier and TypeMethodDescriptionstatic EasingFunctionReturns the enum constant of this class with the specified name.static EasingFunction[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINEAR
Linear
-
IN_QUAD
In quad
-
OUT_QUAD
Out quad
-
IN_OUT_QUAD
In out quad
-
OUT_IN_QUAD
Out in quad
-
IN_CUBIC
In qubic
-
OUT_CUBIC
Out cubic
-
IN_OUT_CUBIC
In out cubic
-
OUT_IN_CUBIC
Out in cubic
-
IN_QUART
In quart
-
OUT_QUART
Out quart
-
IN_OUT_QUART
In out quart
-
OUT_IN_QUART
Out in quart
-
IN_QUINT
In quint
-
OUT_QUINT
Out quint
-
IN_OUT_QUINT
In out quint
-
OUT_IN_QUINT
Out in quint
-
IN_SINE
In sine
-
OUT_SINE
Out sine
-
IN_OUT_SINE
In out sine
-
OUT_IN_SINE
Out in sine
-
IN_EXP
In exp
-
OUT_EXP
Out exp
-
IN_OUT_EXP
In out exp
-
OUT_IN_EXP
Out in exp
-
IN_CIRC
In circ
-
OUT_CIRC
Out circ
-
IN_OUT_CIRC
In out circ
-
OUT_IN_CIRC
Out in circ
-
IN_BACK
In black
-
OUT_BACK
Out black
-
IN_OUT_BACK
In out black
-
OUT_IN_BACK
Out in black
-
IN_BOUNCE
In bounce
-
OUT_BOUNCE
Out bounce
-
IN_OUT_BOUNCE
In out bounce
-
OUT_IN_BOUNCE
Out in bounce
-
IN_ELASTIC
In elastic
-
OUT_ELASTIC
Out elastic
-
IN_OUT_ELASTIC
In out elastic
-
OUT_IN_ELASTIC
Out in elastic
-
-
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
-