Enum Class LocalSearchType

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

public enum LocalSearchType extends Enum<LocalSearchType>
  • Enum Constant Details

    • HILL_CLIMBING

      public static final LocalSearchType HILL_CLIMBING
    • SIMULATED_ANNEALING

      public static final LocalSearchType SIMULATED_ANNEALING
    • LATE_ACCEPTANCE

      public static final LocalSearchType LATE_ACCEPTANCE
    • DIVERSIFIED_LATE_ACCEPTANCE

      public static final LocalSearchType DIVERSIFIED_LATE_ACCEPTANCE
    • GREAT_DELUGE

      public static final LocalSearchType GREAT_DELUGE
    • VARIABLE_NEIGHBORHOOD_DESCENT

      public static final LocalSearchType VARIABLE_NEIGHBORHOOD_DESCENT
  • Method Details

    • values

      public static LocalSearchType[] 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 LocalSearchType 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
    • getBluePrintTypes

      public static @NonNull LocalSearchType @NonNull [] getBluePrintTypes()
      Returns:
      values() without duplicates (abstract types that end up behaving as one of the other types).