Enum Class Planner.Name

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

public static enum Planner.Name extends Enum<Planner.Name>
The enumeration of the planners.
  • Enum Constant Details

    • FF

      public static final Planner.Name FF
      The FF (Fast Forward) planner.
    • GSP

      public static final Planner.Name GSP
      The GSP (Generic Search Planner).
    • HSP

      public static final Planner.Name HSP
      The HSP (Heuristic Search Planner).
    • TFD

      public static final Planner.Name TFD
      TFD (Total-order Forward Decomposition) planner.
    • PFD

      public static final Planner.Name PFD
      PFD (Partial-order Forward Decomposition) planner.
  • Method Details

    • values

      public static Planner.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 Planner.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