EVChargingLocationFeature (API Reference)
Enum Class EVChargingLocationFeature
- All Implemented Interfaces:
Serializable,Comparable<EVChargingLocationFeature>,Constable
Optional features that can be requested for EV charging locations. Note: This is a beta release of this feature, so there could be a few bugs and unexpected behaviors. Related APIs may change for new releases without a deprecation process.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEVChargingLocation.getConnectorGroups()will be returned.EVChargingLocation.getEMobilityServiceProviders()will be returned.EVChargingLocation.getEvses()will be returned.EVChargingLocation.getFacilityTypes()will be returned.EVChargingConnectorGroup.tariffIndexeswill be returned.EVChargingLocation.getTruckRestrictions()will be returned. -
Method Summary
Modifier and TypeMethodDescriptionstatic EVChargingLocationFeatureReturns the enum constant of this class with the specified name.static EVChargingLocationFeature[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EVSES
EVChargingLocation.getEvses()will be returned. IfCONNECTOR_GROUPSis also included, thenEVChargingConnectorGroup.connectorswill also be returned. -
TRUCK_RESTRICTIONS
EVChargingLocation.getTruckRestrictions()will be returned. -
LOCATION_INFO
-
EMSPS
EVChargingLocation.getEMobilityServiceProviders()will be returned. -
CONNECTOR_GROUPS
EVChargingLocation.getConnectorGroups()will be returned. To ensureEVChargingConnectorGroup.connectorsis available, also includeEVSES. To ensureEVChargingConnectorGroup.tariffIndexesis available, also includeTARIFFS. -
TARIFFS
EVChargingConnectorGroup.tariffIndexeswill be returned. Ignored if neitherEVSESnorCONNECTOR_GROUPSare included. -
NEARBY
EVChargingLocation.getFacilityTypes()will be returned.
-
-
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
-