Class DirectReferenceSystem

All Implemented Interfaces:
Serializable, LenientComparable, org.opengis.referencing.IdentifiedObject, org.opengis.referencing.ReferenceSystem

public class DirectReferenceSystem extends ReferenceSystemMetadata
AFNOR extension to ISO ReferenceSystem. The following schema fragment specifies the expected content contained within this class.
Since:
0.4
Version:
0.4
Author:
Cédric Briançon (Geomatys), Guilhem Legal (Geomatys)
See Also:
  • Field Summary

    Fields inherited from class org.apache.sis.internal.simple.SimpleIdentifiedObject

    name

    Fields inherited from interface org.opengis.referencing.IdentifiedObject

    ALIAS_KEY, IDENTIFIERS_KEY, NAME_KEY, REMARKS_KEY

    Fields inherited from interface org.opengis.referencing.ReferenceSystem

    DOMAIN_OF_VALIDITY_KEY, SCOPE_KEY
  • Constructor Summary

    Constructors
    Constructor
    Description
    DirectReferenceSystem(org.opengis.referencing.ReferenceIdentifier identifier)
    Creates a new reference system from the given code.
    DirectReferenceSystem(org.opengis.referencing.ReferenceSystem crs)
    Creates a new reference system from the given one.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    equals(Object object, ComparisonMode mode)
    Compares this object with the given one for equality.

    Methods inherited from class org.apache.sis.internal.jaxb.metadata.replace.ReferenceSystemMetadata

    getName, setName

    Methods inherited from class org.apache.sis.internal.simple.SimpleIdentifiedObject

    equals, getAlias, getDomainOfValidity, getIdentifiers, getRemarks, getScope, hashCode, toString, toWKT

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait

    Methods inherited from interface org.opengis.referencing.IdentifiedObject

    getAlias, getIdentifiers, getRemarks, toWKT

    Methods inherited from interface org.opengis.referencing.ReferenceSystem

    getDomainOfValidity, getScope
  • Constructor Details

    • DirectReferenceSystem

      public DirectReferenceSystem(org.opengis.referencing.ReferenceSystem crs)
      Creates a new reference system from the given one.
      Parameters:
      crs - the reference system to partially copy.
    • DirectReferenceSystem

      public DirectReferenceSystem(org.opengis.referencing.ReferenceIdentifier identifier)
      Creates a new reference system from the given code.
      Parameters:
      identifier - the reference system identifier.
  • Method Details