Class EVChargingConnector

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

public final class EVChargingConnector extends Object

Represents a connector at the charging point. 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

    • id

      @NonNull public String id

      Identifier of the connector within the EVSE.

    • connectorType

      @NonNull public String connectorType

      Standardized type of the connector. Should be one of the constants defined in EVChargingConnectorType.

    • format

      @NonNull public EVChargingConnectorFormat format

      Format of the connector, whether it is a socket or a cable.

    • powerType

      @NonNull public PowerType powerType

      Type of electrical power used by the connector.

    • maxVoltageInVolts

      public int maxVoltageInVolts

      Max voltage (in volts) of the connector.

    • maxCurrentInAmperes

      public int maxCurrentInAmperes

      Max current (in amperes) of the connector.

    • maxPowerInWatts

      @Nullable public Integer maxPowerInWatts

      Max power (in watts) of the connector, if available. This should be set when the maximum electric power is lower than the calculated value from voltage and amperage.

    • termsAndConditionsUrl

      @Nullable public String termsAndConditionsUrl

      URL to the operator’s terms and conditions, if available.

    • tariffIndexes

      @NonNull public List<Integer> tariffIndexes

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

  • Constructor Details

    • EVChargingConnector

      public EVChargingConnector()

      Creates a new instance.

  • Method Details