Class BusSpecifications
Package com.here.sdk.transport
Class BusSpecifications
- java.lang.Object
-
- com.here.sdk.transport.BusSpecifications
-
public final class BusSpecifications extends java.lang.ObjectBus specifications contain vehicle related attributes. Examples: height, weight, width. Only the fields that are set are considered for restriction handling.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.IntegergrossWeightInKilogramsTotal vehicle weight in kilograms.java.lang.IntegerheightInCentimetersBus height in centimeters.java.lang.IntegerlengthInCentimetersBus length in centimeters.java.lang.IntegerwidthInCentimetersBus width in centimeters.
-
Constructor Summary
Constructors Constructor Description BusSpecifications()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
-
grossWeightInKilograms
@Nullable public java.lang.Integer grossWeightInKilograms
Total vehicle weight in kilograms. By default, it is not set.
-
heightInCentimeters
@Nullable public java.lang.Integer heightInCentimeters
Bus height in centimeters. By default, it is not set.
-
widthInCentimeters
@Nullable public java.lang.Integer widthInCentimeters
Bus width in centimeters. By default, it is not set.
-
lengthInCentimeters
@Nullable public java.lang.Integer lengthInCentimeters
Bus length in centimeters. By default, it is not set.
-
-