Package org.geotools.api.referencing.cs
Class RangeMeaning
- Object
-
- CodeList<RangeMeaning>
-
- RangeMeaning
-
- All Implemented Interfaces:
Serializable
,Comparable<RangeMeaning>
@UML(identifier="CS_RangeMeaning", specification=ISO_19111) public final class RangeMeaning extends CodeList<RangeMeaning>
Meaning of the axis value range specified through minimum value and maximum value.- Since:
- GeoAPI 2.1
- Author:
- Martin Desruisseaux (IRD)
- See Also:
CoordinateSystemAxis.getRangeMeaning()
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static RangeMeaning
EXACT
Any value between and including minimum value and maximum value is valid.static RangeMeaning
WRAPAROUND
The axis is continuous with values wrapping around at the minimum value and maximum value.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description RangeMeaning[]
family()
Returns the list of enumerations of the same kind than this enum.static RangeMeaning
valueOf(String code)
Returns the range meaning that matches the given string, or returns a new one if none match it.static RangeMeaning[]
values()
Returns the list ofRangeMeaning
s.
-
-
-
Field Detail
-
EXACT
@UML(identifier="exact", obligation=CONDITIONAL, specification=ISO_19111) public static final RangeMeaning EXACT
Any value between and including minimum value and maximum value is valid.
-
WRAPAROUND
@UML(identifier="wraparound", obligation=CONDITIONAL, specification=ISO_19111) public static final RangeMeaning WRAPAROUND
The axis is continuous with values wrapping around at the minimum value and maximum value. Values with the same meaning repeat modulo the difference between maximum value and minimum value.
-
-
Method Detail
-
values
public static RangeMeaning[] values()
Returns the list ofRangeMeaning
s.- Returns:
- The list of codes declared in the current JVM.
-
family
public RangeMeaning[] family()
Returns the list of enumerations of the same kind than this enum.- Specified by:
family
in classCodeList<RangeMeaning>
- Returns:
- The codes of the same kind than this code.
-
valueOf
public static RangeMeaning valueOf(String code)
Returns the range meaning that matches the given string, or returns a new one if none match it.- Parameters:
code
- The name of the code to fetch or to create.- Returns:
- A code matching the given name.
-
-