Class ChargingActionDetails
Package com.here.sdk.routing
Class ChargingActionDetails
- java.lang.Object
-
- com.here.sdk.routing.ChargingActionDetails
-
public final class ChargingActionDetails extends java.lang.ObjectParameters related to the electric vehicle's charging action.
-
-
Field Summary
Fields Modifier and Type Field Description doublearrivalChargeInKilowattHoursEstimated vehicle battery charge before this action (in kWh).doubleconsumablePowerInKilowattsMaximum charging power (in kW) available to the vehicle, based on the properties of the charging station and the vehicle.doubletargetChargeInKilowattHoursLevel to which vehicle battery should be charged by this action (in kWh).
-
Constructor Summary
Constructors Constructor Description ChargingActionDetails()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
-
consumablePowerInKilowatts
public double consumablePowerInKilowatts
Maximum charging power (in kW) available to the vehicle, based on the properties of the charging station and the vehicle. A valid
ChargingActionDetailsobject will have positiveconsumablePowerInKilowatts. Defaults to 0.
-
arrivalChargeInKilowattHours
public double arrivalChargeInKilowattHours
Estimated vehicle battery charge before this action (in kWh). A valid
ChargingActionDetailsobject will have positivearrivalChargeInKilowattHours. Defaults to 0.
-
targetChargeInKilowattHours
public double targetChargeInKilowattHours
Level to which vehicle battery should be charged by this action (in kWh). A valid
ChargingActionDetailsobject will have positivetargetChargeInKilowattHours. Defaults to 0.
-
-