Class MapMeasureRange
Package com.here.sdk.mapview
Class MapMeasureRange
- java.lang.Object
-
- com.here.sdk.mapview.MapMeasureRange
-
public final class MapMeasureRange extends java.lang.ObjectA map measure range.
-
-
Field Summary
Fields Modifier and Type Field Description MapMeasure.KindkindThe kind of measure represented by value.doublemaximumValueThe maximum measure value.doubleminimumValueThe minimum measure value.
-
Constructor Summary
Constructors Constructor Description MapMeasureRange(MapMeasure.Kind kind, double minimumValue, double maximumValue)Constructs a MapMeasureRange from the kind and range values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)inthashCode()
-
-
-
Field Detail
-
kind
@NonNull public final MapMeasure.Kind kind
The kind of measure represented by value.
-
minimumValue
public final double minimumValue
The minimum measure value.
-
maximumValue
public final double maximumValue
The maximum measure value.
-
-
Constructor Detail
-
MapMeasureRange
public MapMeasureRange(@NonNull MapMeasure.Kind kind, double minimumValue, double maximumValue)Constructs a MapMeasureRange from the kind and range values.
- Parameters:
kind-The measure kind.
minimumValue-The minimum measure value.
maximumValue-The maximum measure value.
-
-