Enum Class PostActionType

java.lang.Object
java.lang.Enum<PostActionType>
com.here.sdk.routing.PostActionType
All Implemented Interfaces:
Serializable, Comparable<PostActionType>, Constable

public enum PostActionType extends Enum<PostActionType>

Identifies the action type.

  • Enum Constant Details

    • CHARGING_SETUP

      public static final PostActionType CHARGING_SETUP

      Represents the action of setting up for charging (e.g., payment processing), independent of the action of actually charging the vehicle battery.

    • CHARGING

      public static final PostActionType CHARGING

      An action to charge the vehicle battery.

    • DEBOARD

      public static final PostActionType DEBOARD

      An action to disembark from a ferry.

    • WAIT

      public static final PostActionType WAIT

      An action to be performed at or during a specific portion of a section.

  • Method Details

    • values

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