Class ChargingConnectorAttributes
Package com.here.sdk.routing
Class ChargingConnectorAttributes
- java.lang.Object
-
- com.here.sdk.routing.ChargingConnectorAttributes
-
public final class ChargingConnectorAttributes extends java.lang.ObjectDetails of the connector that is suggested to be used in the section's
PostAction's for charging.
-
-
Field Summary
Fields Modifier and Type Field Description ChargingConnectorTypeconnectorTypeSuggested connector for charging at this station.java.lang.DoublecurrentInAmperesCurrent of the suggested connector in Amperes.doublepowerInKilowattsPower supplied by the suggested connector in kW.ChargingSupplyTypesupplyTypeSupply type of the suggested connector.java.lang.DoublevoltageInVoltsVoltage of the suggested connector in Volts.
-
Constructor Summary
Constructors Constructor Description ChargingConnectorAttributes(double powerInKilowatts, java.lang.Double currentInAmperes, java.lang.Double voltageInVolts, ChargingSupplyType supplyType, ChargingConnectorType connectorType)Creates a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
powerInKilowatts
public double powerInKilowatts
Power supplied by the suggested connector in kW.
-
currentInAmperes
@Nullable public java.lang.Double currentInAmperes
Current of the suggested connector in Amperes.
-
voltageInVolts
@Nullable public java.lang.Double voltageInVolts
Voltage of the suggested connector in Volts.
-
supplyType
@Nullable public ChargingSupplyType supplyType
Supply type of the suggested connector.
-
connectorType
@Nullable public ChargingConnectorType connectorType
Suggested connector for charging at this station.
-
-
Constructor Detail
-
ChargingConnectorAttributes
public ChargingConnectorAttributes(double powerInKilowatts, @Nullable java.lang.Double currentInAmperes, @Nullable java.lang.Double voltageInVolts, @Nullable ChargingSupplyType supplyType, @Nullable ChargingConnectorType connectorType)Creates a new instance.
- Parameters:
powerInKilowatts-Power supplied by the suggested connector in kW.
currentInAmperes-Current of the suggested connector in Amperes.
voltageInVolts-Voltage of the suggested connector in Volts.
supplyType-Supply type of the suggested connector.
connectorType-Suggested connector for charging at this station.
-
-