- All Implemented Interfaces:
Serializable
,Comparable<AnimationCurve>
,Constable
Controls how the map view is animated as it is moved between positions. To play with the animation easing functions,
see https://easings.net/.
- Since:
- 100.1.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionMove in circularly.Move in cubic.Move in exponentially.Move in and out circularly.Move in and out cubic.Move in and out exponentially.Move in and out quadratic.Move in and out quartic.Move in and out quintic.Move in and out sine.Move in quadratic.Move in quartic.Move in quintic.Move in sine.Move out circularly.Move out cubic.Move out exponentially.Move out quadratic.Move out quartic.Move out quintic.Move out sine.Move linear. -
Method Summary
Modifier and TypeMethodDescriptionstatic AnimationCurve
Returns the enum constant of this class with the specified name.static AnimationCurve[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LINEAR
Move linear.- Since:
- 100.1.0
-
EASE_IN_QUAD
Move in quadratic.- Since:
- 100.1.0
-
EASE_OUT_QUAD
Move out quadratic.- Since:
- 100.1.0
-
EASE_IN_OUT_QUAD
Move in and out quadratic.- Since:
- 100.1.0
-
EASE_IN_CUBIC
Move in cubic.- Since:
- 100.1.0
-
EASE_OUT_CUBIC
Move out cubic.- Since:
- 100.1.0
-
EASE_IN_OUT_CUBIC
Move in and out cubic.- Since:
- 100.1.0
-
EASE_IN_QUART
Move in quartic.- Since:
- 100.1.0
-
EASE_OUT_QUART
Move out quartic.- Since:
- 100.1.0
-
EASE_IN_OUT_QUART
Move in and out quartic.- Since:
- 100.1.0
-
EASE_IN_QUINT
Move in quintic.- Since:
- 100.1.0
-
EASE_OUT_QUINT
Move out quintic.- Since:
- 100.1.0
-
EASE_IN_OUT_QUINT
Move in and out quintic.- Since:
- 100.1.0
-
EASE_IN_SINE
Move in sine.- Since:
- 100.1.0
-
EASE_OUT_SINE
Move out sine.- Since:
- 100.1.0
-
EASE_IN_OUT_SINE
Move in and out sine.- Since:
- 100.1.0
-
EASE_IN_EXPO
Move in exponentially.- Since:
- 100.1.0
-
EASE_OUT_EXPO
Move out exponentially.- Since:
- 100.1.0
-
EASE_IN_OUT_EXPO
Move in and out exponentially.- Since:
- 100.1.0
-
EASE_IN_CIRC
Move in circularly.- Since:
- 100.1.0
-
EASE_OUT_CIRC
Move out circularly.- Since:
- 100.1.0
-
EASE_IN_OUT_CIRC
Move in and out circularly.- Since:
- 100.1.0
-
-
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
-