Enum Class EVSEStatus

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

public enum EVSEStatus extends Enum<EVSEStatus>

EVSE status

  • Enum Constant Details

    • AVAILABLE

      public static final EVSEStatus AVAILABLE

      The EVSE is able to start a new charging session.

    • OCCUPIED

      public static final EVSEStatus OCCUPIED

      The EVSE is in use.

    • OFFLINE

      public static final EVSEStatus OFFLINE

      No status information available. Also used when offline.

    • OTHER

      public static final EVSEStatus OTHER

      No status information available. Also used when offline.

    • OUT_OF_SERVICE

      public static final EVSEStatus OUT_OF_SERVICE

      The EVSE is currently out of order.

    • RESERVED

      public static final EVSEStatus RESERVED

      The EVSE has been reserved for a particular EV driver and is unavailable for other drivers.

    • UNAVAILABLE

      public static final EVSEStatus UNAVAILABLE

      The EVSE is not available because of a physical barrier, for example a car.

  • Method Details

    • values

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