Class TrafficFlowQueryOptions
Package com.here.sdk.traffic
Class TrafficFlowQueryOptions
- java.lang.Object
-
- com.here.sdk.traffic.TrafficFlowQueryOptions
-
public final class TrafficFlowQueryOptions extends java.lang.ObjectThe options to specify how traffic flow data should be queried.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.DoublemaxJamFactorMax jam factor value.java.lang.DoubleminJamFactorMin jam factor value.
-
Constructor Summary
Constructors Constructor Description TrafficFlowQueryOptions()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
-
minJamFactor
@Nullable public java.lang.Double minJamFactor
Min jam factor value. The jam factor is a value for the amount of traffic on the roadway. The value is between 0.0 and 10.0 (inclusive). This will be used with
maxJamFactorto filter queried flow. If the value isnull, then filtering by the min jam factor is not applied.
-
maxJamFactor
@Nullable public java.lang.Double maxJamFactor
Max jam factor value. The jam factor is a value for the amount of traffic on the roadway. The value is between 0.0 and 10.0 (inclusive). This will be used with
minJamFactorto filter queried flow. If the value is null filtering by the max jam factor is not applied.
-
-