Package org.opengis.referencing
Interface IdentifiedObject
-
- All Known Subinterfaces:
AffineCS,CartesianCS,CompoundCRS,ConcatenatedOperation,ConicProjection,Conversion,CoordinateOperation,CoordinateReferenceSystem,CoordinateSystem,CoordinateSystemAxis,CylindricalCS,CylindricalProjection,Datum,DerivedCRS,Ellipsoid,EllipsoidalCS,EngineeringCRS,EngineeringDatum,GeneralDerivedCRS,GeneralParameterDescriptor,GeocentricCRS,GeodeticCRS,GeodeticDatum,GeographicCRS,ImageCRS,ImageDatum,LinearCS,OperationMethod,ParameterDescriptor<T>,ParameterDescriptorGroup,PassThroughOperation,PlanarProjection,PolarCS,PrimeMeridian,ProjectedCRS,Projection,ReferenceSystem,SingleCRS,SingleOperation,SphericalCS,TemporalCRS,TemporalDatum,TimeCS,Transformation,UserDefinedCS,VerticalCRS,VerticalCS,VerticalDatum
@UML(identifier="IO_IdentifiedObject", specification=ISO_19111) public interface IdentifiedObject
Supplementary identification and remarks information for a CRS or CRS-related object. WhenCRSAuthorityFactoryis used to create an object, the authority and authority code values shall be set to the authority name of the factory object, and the authority code supplied by the client, respectively. The other values may or may not be set. If the authority is EPSG, the implementer may consider using the corresponding metadata values in the EPSG tables.- Since:
- 2.0
- Version:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringALIAS_KEYstatic java.lang.StringIDENTIFIERS_KEYstatic java.lang.StringNAME_KEYstatic java.lang.StringREMARKS_KEY
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<GenericName>getAlias()An alternative name by which this object is identified.java.util.Set<ReferenceIdentifier>getIdentifiers()An identifier which references elsewhere the object's defining information.ReferenceIdentifiergetName()The primary name by which this object is identified.InternationalStringgetRemarks()Comments on or information about this object, including data source information.java.lang.StringtoWKT()Returns a Well Known Text (WKT) for this object.
-
-
-
Field Detail
-
NAME_KEY
static final java.lang.String NAME_KEY
Key for the"name"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetName().- See Also:
getName(), Constant Field Values
-
ALIAS_KEY
static final java.lang.String ALIAS_KEY
Key for the"alias"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetAlias().- See Also:
getAlias(), Constant Field Values
-
IDENTIFIERS_KEY
static final java.lang.String IDENTIFIERS_KEY
Key for the"identifiers"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetIdentifiers().- See Also:
getIdentifiers(), Constant Field Values
-
REMARKS_KEY
static final java.lang.String REMARKS_KEY
Key for the"remarks"property to be given to the object factorycreateFoo(…)methods. This is used for setting the value to be returned bygetRemarks().- See Also:
getRemarks(), Constant Field Values
-
-
Method Detail
-
getName
@UML(identifier="name", obligation=MANDATORY, specification=ISO_19111) ReferenceIdentifier getName()
The primary name by which this object is identified.- Returns:
- The primary name.
-
getAlias
@UML(identifier="alias", obligation=OPTIONAL, specification=ISO_19111) java.util.Collection<GenericName> getAlias()
An alternative name by which this object is identified.- Returns:
- The aliases, or an empty collection if there is none.
-
getIdentifiers
@UML(identifier="identifier", obligation=OPTIONAL, specification=ISO_19111) java.util.Set<ReferenceIdentifier> getIdentifiers()
An identifier which references elsewhere the object's defining information. Alternatively an identifier by which this object can be referenced.- Returns:
- This object identifiers, or an empty set if there is none.
-
getRemarks
@UML(identifier="remarks", obligation=OPTIONAL, specification=ISO_19111) InternationalString getRemarks()
Comments on or information about this object, including data source information.- Returns:
- The remarks, or
nullif none.
-
toWKT
java.lang.String toWKT() throws java.lang.UnsupportedOperationExceptionReturns a Well Known Text (WKT) for this object. This operation may fails if an object is too complex for the WKT format capability (for example an engineering CRS with different unit for each axis).- Returns:
- The Well Know Text for this object.
- Throws:
java.lang.UnsupportedOperationException- If this object can't be formatted as WKT.
-
-