Enum Class Interpolator.StepPosition
- All Implemented Interfaces:
Serializable
,Comparable<Interpolator.StepPosition>
,Constable
- Enclosing class:
Interpolator
Specifies the step position of a step interpolator.
The step position determines the location of rise points in the input progress interval, which are the locations on the input progress axis where the output progress value jumps from one step to the next.
- Since:
- 23
-
Nested Class Summary
Nested classes/interfaces declared in class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionThe interval starts with a rise point when the input progress value is 0, and ends with a rise point when the input progress value is 1.The interval ends with a rise point when the input progress value is 1.All rise points are within the open interval (0..1).The interval starts with a rise point when the input progress value is 0. -
Method Summary
Modifier and TypeMethodDescriptionstatic Interpolator.StepPosition
Returns the enum constant of this class with the specified name.static Interpolator.StepPosition[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
START
The interval starts with a rise point when the input progress value is 0. -
END
The interval ends with a rise point when the input progress value is 1. -
BOTH
The interval starts with a rise point when the input progress value is 0, and ends with a rise point when the input progress value is 1. -
NONE
All rise points are within the open interval (0..1).
-
-
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
-