Package org.geotools.api.referencing
Interface ReferenceIdentifier
-
- All Superinterfaces:
Identifier
- All Known Implementing Classes:
NamedIdentifier
public interface ReferenceIdentifier extends Identifier
Identifier used for reference systems.- Since:
- GeoAPI 2.1
- Author:
- Ely Conn (Leica Geosystems Geospatial Imaging, LLC)
-
-
Field Summary
Fields Modifier and Type Field Description static String
CODESPACE_KEY
static String
VERSION_KEY
-
Fields inherited from interface Identifier
AUTHORITY_KEY, CODE_KEY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCodeSpace()
Name or identifier of the person or organization responsible for namespace.String
getVersion()
Version identifier for the namespace, as specified by the code authority.-
Methods inherited from interface Identifier
getAuthority, getCode
-
-
-
-
Field Detail
-
CODESPACE_KEY
static final String CODESPACE_KEY
Key for the"codespace"
property to be given to the CRS factorycreateFoo(…)
methods. This is used for setting the value to be returned bygetCodeSpace()
.- See Also:
getCodeSpace()
, Constant Field Values
-
VERSION_KEY
static final String VERSION_KEY
Key for the"version"
property to be given to the CRS factorycreateFoo(…)
methods. This is used for setting the value to be returned bygetVersion()
.- See Also:
getVersion()
, Constant Field Values
-
-
Method Detail
-
getCodeSpace
String getCodeSpace()
Name or identifier of the person or organization responsible for namespace.- Returns:
- The identifier code space.
-
getVersion
String getVersion()
Version identifier for the namespace, as specified by the code authority. When appropriate, the edition is identified by the effective date, coded using ISO 8601 date format.- Returns:
- The version for the namespace (for example the version of the underlying EPSG database).
-
-