Uses of Class
org.geotools.api.referencing.cs.RangeMeaning
-
Packages that use RangeMeaning Package Description org.geotools.api.referencing.cs Coordinate systems and their axis.org.geotools.referencing.cs Coordinate systems implementation. -
-
Uses of RangeMeaning in org.geotools.api.referencing.cs
Fields in org.geotools.api.referencing.cs declared as RangeMeaning Modifier and Type Field Description static RangeMeaning
RangeMeaning. EXACT
Any value between and including minimum value and maximum value is valid.static RangeMeaning
RangeMeaning. WRAPAROUND
The axis is continuous with values wrapping around at the minimum value and maximum value.Methods in org.geotools.api.referencing.cs that return RangeMeaning Modifier and Type Method Description RangeMeaning[]
RangeMeaning. family()
Returns the list of enumerations of the same kind than this enum.RangeMeaning
CoordinateSystemAxis. getRangeMeaning()
static RangeMeaning
RangeMeaning. valueOf(String code)
Returns the range meaning that matches the given string, or returns a new one if none match it.static RangeMeaning[]
RangeMeaning. values()
Returns the list ofRangeMeaning
s. -
Uses of RangeMeaning in org.geotools.referencing.cs
Methods in org.geotools.referencing.cs that return RangeMeaning Modifier and Type Method Description RangeMeaning
DefaultCoordinateSystemAxis. getRangeMeaning()
Constructors in org.geotools.referencing.cs with parameters of type RangeMeaning Constructor Description DefaultCoordinateSystemAxis(Map<String,?> properties, String abbreviation, AxisDirection direction, Unit<?> unit, double minimum, double maximum, RangeMeaning rangeMeaning)
Constructs an axis from a set of properties.
-