Enum Class Interpolator.StepPosition

java.lang.Object
java.lang.Enum<Interpolator.StepPosition>
javafx.animation.Interpolator.StepPosition
All Implemented Interfaces:
Serializable, Comparable<Interpolator.StepPosition>, Constable
Enclosing class:
Interpolator

public static enum Interpolator.StepPosition extends Enum<Interpolator.StepPosition>
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
  • Enum Constant Details

    • START

      public static final Interpolator.StepPosition START
      The interval starts with a rise point when the input progress value is 0.

      START

    • END

      public static final Interpolator.StepPosition END
      The interval ends with a rise point when the input progress value is 1.

      END

    • BOTH

      public static final Interpolator.StepPosition 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.

      BOTH

    • NONE

      public static final Interpolator.StepPosition NONE
      All rise points are within the open interval (0..1).

      NONE

  • Method Details

    • values

      public static Interpolator.StepPosition[] 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

      public static Interpolator.StepPosition valueOf(String name)
      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 name
      NullPointerException - if the argument is null