Class EPSGParameterDomain
- All Implemented Interfaces:
Serializable
,Formattable
,CheckedContainer<Double>
,Emptiable
The domain of values of an EPSG parameter which accepts different units.
An example is the EPSG:8617 (Coordinate 1 of evaluation point) parameter,
which may be used in the EPSG database with either metres or degrees units.
- Since:
- 0.7
- Version:
- 0.7
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final long
For cross-version compatibility.final Set
<javax.measure.Unit<?>> The units of measurement. -
Constructor Summary
ConstructorsConstructorDescriptionEPSGParameterDomain
(Set<javax.measure.Unit<?>> units) Creates a new parameter descriptor for the given units. -
Method Summary
Methods inherited from class org.apache.sis.measure.NumberRange
castOrCopy, castTo, containsAny, containsAny, create, create, create, create, create, create, create, createBestFit, createBestFit, createLeftBounded, getMaxDouble, getMaxDouble, getMedian, getMinDouble, getMinDouble, getSpan, intersectAny, intersectsAny, subtractAny, transform, unionAny
Methods inherited from class org.apache.sis.measure.Range
contains, contains, equals, formatTo, getElementType, getMaxValue, getMinValue, hashCode, intersect, intersects, isBounded, isEmpty, isMaxIncluded, isMinIncluded, subtract, toString, union
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDFor cross-version compatibility.- See Also:
-
units
The units of measurement.
-
-
Constructor Details
-
EPSGParameterDomain
Creates a new parameter descriptor for the given units.- Parameters:
units
- the units.
-