EVSEStatus (API Reference)
Package com.here.sdk.search
Enum Class EVSEStatus
- All Implemented Interfaces:
Serializable,Comparable<EVSEStatus>,Constable
EVSE status
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe EVSE is able to start a new charging session.The EVSE is in use.No status information available.No status information available.The EVSE is currently out of order.The EVSE has been reserved for a particular EV driver and is unavailable for other drivers.The EVSE is not available because of a physical barrier, for example a car. -
Method Summary
Modifier and TypeMethodDescriptionstatic EVSEStatusReturns the enum constant of this class with the specified name.static EVSEStatus[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AVAILABLE
The EVSE is able to start a new charging session.
-
OCCUPIED
The EVSE is in use.
-
OFFLINE
No status information available. Also used when offline.
-
OTHER
No status information available. Also used when offline.
-
OUT_OF_SERVICE
The EVSE is currently out of order.
-
RESERVED
The EVSE has been reserved for a particular EV driver and is unavailable for other drivers.
-
UNAVAILABLE
The EVSE is not available because of a physical barrier, for example a car.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-