Class GeneralVehicleSpeedLimits
Class GeneralVehicleSpeedLimits
- java.lang.Object
-
- com.here.sdk.transport.GeneralVehicleSpeedLimits
-
public final class GeneralVehicleSpeedLimits extends java.lang.ObjectContains the speed limits for vehicles in a country / state.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.DoublemaxSpeedHighwaysInMetersPerSecondThe general speed limit on highways for the country / state.java.lang.DoublemaxSpeedNightInMetersPerSecondThe general speed limit at night for the country / state.java.lang.DoublemaxSpeedRainingInMetersPerSecondThe general speed limit when raining for the country / state.java.lang.DoublemaxSpeedRuralInMetersPerSecondThe general speed limit on rural roads for the country / state.java.lang.DoublemaxSpeedSnowingInMetersPerSecondThe general speed limit when snowing for the country / state.java.lang.DoublemaxSpeedUrbanInMetersPerSecondThe general speed limit on urban roads for the country / state.java.lang.DoubleminSpeedHighwaysInMetersPerSecondThe minimum speed on highways for the country / state.
-
Constructor Summary
Constructors Constructor Description GeneralVehicleSpeedLimits()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
-
maxSpeedHighwaysInMetersPerSecond
@Nullable public java.lang.Double maxSpeedHighwaysInMetersPerSecond
The general speed limit on highways for the country / state. It is
nullif the general speed limit on highways for the country / state is not specified.
-
maxSpeedRuralInMetersPerSecond
@Nullable public java.lang.Double maxSpeedRuralInMetersPerSecond
The general speed limit on rural roads for the country / state. It is
nullif the general speed limit on rural roads for the country / state is not specified.
-
maxSpeedUrbanInMetersPerSecond
@Nullable public java.lang.Double maxSpeedUrbanInMetersPerSecond
The general speed limit on urban roads for the country / state. It is
nullif the general speed limit on urban roads for the country / state is not specified.
-
maxSpeedRainingInMetersPerSecond
@Nullable public java.lang.Double maxSpeedRainingInMetersPerSecond
The general speed limit when raining for the country / state. It is
nullif the general speed limit when raining for the country / state is not specified.
-
maxSpeedSnowingInMetersPerSecond
@Nullable public java.lang.Double maxSpeedSnowingInMetersPerSecond
The general speed limit when snowing for the country / state. It is
nullif the general speed limit when snowing for the country / state is not specified.
-
maxSpeedNightInMetersPerSecond
@Nullable public java.lang.Double maxSpeedNightInMetersPerSecond
The general speed limit at night for the country / state. It is
nullif the general speed limit at night for the country / state is not specified.
-
minSpeedHighwaysInMetersPerSecond
@Nullable public java.lang.Double minSpeedHighwaysInMetersPerSecond
The minimum speed on highways for the country / state. It is
nullif the minimum speed on highways for the country / state is not specified.
-
-