Enum Class PreviewFeature

java.lang.Object
java.lang.Enum<PreviewFeature>
ai.timefold.solver.core.config.solver.PreviewFeature
All Implemented Interfaces:
Serializable, Comparable<PreviewFeature>, Constable

public enum PreviewFeature extends Enum<PreviewFeature>
Lists features available in Timefold Solver on a preview basis. These preview features are developed to the same standard as the rest of Timefold Solver. However, their APIs are not yet considered stable, pending user feedback. Any class, method, or field related to these features may change or be removed without prior notice, although we will strive to avoid this as much as possible. We encourage you to try these preview features and give us feedback on your experience with them. Please direct your feedback to Timefold Solver GitHub or to Timefold Discord.

This list is not constant and is evolving over time, with items being added and removed without warning. It should not be treated as part of our public API, just like the preview features themselves.

  • Enum Constant Details

    • DIVERSIFIED_LATE_ACCEPTANCE

      public static final PreviewFeature DIVERSIFIED_LATE_ACCEPTANCE
    • PLANNING_SOLUTION_DIFF

      public static final PreviewFeature PLANNING_SOLUTION_DIFF
    • NEIGHBORHOODS

      public static final PreviewFeature NEIGHBORHOODS
      Unlike other preview features, Neighborhoods are an active research project. It is intended to simplify the creation of custom moves, eventually replacing move selectors. The component is under development, and many key features are yet to be delivered.
  • Method Details

    • values

      public static PreviewFeature[] 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 PreviewFeature 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