Class EVChargingConnectorGroup

java.lang.Object
com.here.sdk.search.EVChargingConnectorGroup

public final class EVChargingConnectorGroup extends Object

Represents the connector group at the charging location. 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.

  • Field Details

    • connectorType

      @NonNull public String connectorType

      The standard (type) of the connectors belonging to this group. Should be one of the constants defined in EVChargingConnectorType.

    • maxPowerInWatts

      public int maxPowerInWatts

      Maximum power that can be delivered by the connectors, in watts (W). Connectors without max power are not grouped.

    • connectors

      @NonNull public List<EVChargingConnectorReference> connectors

      Array of EVSE + connector(s) pairs that belong to the group. Provides access to EVSE statuses and more detailed connector characteristics. Available only if EVChargingLocationFeature.EVSES is included in EVSearchOptions.additional_features, otherwise empty.

    • connectorCount

      public int connectorCount

      Number of connectors in the group. If an EVSE has multiple identical connectors they are counted as one as only one is accessible at a time.

    • availableConnectorCount

      @Nullable public Integer availableConnectorCount

      Number of connectors available for use at the time of query. The field is not present if the availability is not known.

    • tariffIndexes

      @NonNull public List<Integer> tariffIndexes

      Tariffs for the connector group, represented by indexes to the charging station's tariffs-list. Available only if EVChargingLocationFeature.TARIFFS is included in EVSearchOptions.additional_features, otherwise empty.

  • Constructor Details

    • EVChargingConnectorGroup

      public EVChargingConnectorGroup()

      Creates a new instance.

  • Method Details