Enum Class PreviewFeature
- All Implemented Interfaces:
Serializable,Comparable<PreviewFeature>,Constable
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionUnlike other preview features, Neighborhoods are an active research project. -
Method Summary
Modifier and TypeMethodDescriptionstatic PreviewFeatureReturns the enum constant of this class with the specified name.static PreviewFeature[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DIVERSIFIED_LATE_ACCEPTANCE
-
PLANNING_SOLUTION_DIFF
-
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
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
-