Enum Class SearchStrategy.Name

java.lang.Object
java.lang.Enum<SearchStrategy.Name>
fr.uga.pddl4j.planners.SearchStrategy.Name
All Implemented Interfaces:
Serializable, Comparable<SearchStrategy.Name>, Constable
Enclosing interface:
SearchStrategy

public static enum SearchStrategy.Name extends Enum<SearchStrategy.Name>
The name of the search strategy.
  • Enum Constant Details

    • ASTAR

      public static final SearchStrategy.Name ASTAR
      The A* search strategy.
    • ENFORCED_HILL_CLIMBING

      public static final SearchStrategy.Name ENFORCED_HILL_CLIMBING
      The enforced hill climbing search strategy.
    • BREADTH_FIRST

      public static final SearchStrategy.Name BREADTH_FIRST
      The breadth first search strategy.
    • GREEDY_BEST_FIRST

      public static final SearchStrategy.Name GREEDY_BEST_FIRST
      The greedy first search strategy.
    • DEPTH_FIRST

      public static final SearchStrategy.Name DEPTH_FIRST
      The depth first search strategy.
    • HILL_CLIMBING

      public static final SearchStrategy.Name HILL_CLIMBING
      The hill climbing first search strategy.
  • Method Details

    • values

      public static SearchStrategy.Name[] 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 SearchStrategy.Name 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