Class DefaultApplicationSchemaInformation

Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultApplicationSchemaInformation
All Implemented Interfaces:
Serializable, Emptiable, Lenient­Comparable, Identified­Object, Application­Schema­Information

public class DefaultApplicationSchemaInformation extends ISOMetadata implements ApplicationSchemaInformation
Information about the application schema used to build the dataset. The following properties are mandatory in a well-formed metadata according ISO 19115:
MD_Application­Schema­Information   ├─name…………………………………………………………… Name of the application schema used.   │   ├─title……………………………………………… Name by which the cited resource is known.   │   └─date………………………………………………… Reference date for the cited resource.   ├─schema­Language………………………………… Identification of the schema language used.   └─constraint­Language……………………… Formal language used in Application Schema.

Limitations

  • Instances of this class are not synchronized for multi-threading. Synchronization, if needed, is caller's responsibility.
  • Serialized objects of this class are not guaranteed to be compatible with future Apache SIS releases. Serialization support is appropriate for short term storage or RMI between applications running the same version of Apache SIS. For long term storage, use XML instead.
Since:
0.3
See Also:
  • Constructor Details

    • DefaultApplicationSchemaInformation

      public DefaultApplicationSchemaInformation()
      Construct an initially empty application schema information.
    • DefaultApplicationSchemaInformation

      public DefaultApplicationSchemaInformation(Citation name, String schemaLanguage, String constraintLanguage)
      Creates a application schema information initialized to the specified values.
      Parameters:
      name - the name of the application schema used.
      schema­Language - the identification of the schema language used.
      constraint­Language - the formal language used in application schema.
    • DefaultApplicationSchemaInformation

      public DefaultApplicationSchemaInformation(ApplicationSchemaInformation object)
      Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, because the other metadata contained in the given object are not recursively copied.
      Parameters:
      object - the metadata to copy values from, or null if none.
      See Also:
  • Method Details

    • castOrCopy

      Returns a SIS metadata implementation with the values of the given arbitrary implementation. This method performs the first applicable action in the following choices:
      • If the given object is null, then this method returns null.
      • Otherwise if the given object is already an instance of Default­Application­Schema­Information, then it is returned unchanged.
      • Otherwise a new Default­Application­Schema­Information instance is created using the copy constructor and returned. Note that this is a shallow copy operation, because the other metadata contained in the given object are not recursively copied.
      Parameters:
      object - the object to get as a SIS implementation, or null if none.
      Returns:
      a SIS implementation containing the values of the given object (may be the given object itself), or null if the argument was null.
    • getName

      public Citation getName()
      Name of the application schema used.
      Specified by:
      get­Name in interface Application­Schema­Information
      Returns:
      name of the application schema, or null.
    • setName

      public void setName(Citation newValue)
      Sets the name of the application schema used.
      Parameters:
      new­Value - the new name.
    • getSchemaLanguage

      public String getSchemaLanguage()
      Identification of the schema language used.
      Specified by:
      get­Schema­Language in interface Application­Schema­Information
      Returns:
      the schema language used, or null.
    • setSchemaLanguage

      public void setSchemaLanguage(String newValue)
      Sets the identification of the schema language used.
      Parameters:
      new­Value - the new schema language.
    • getConstraintLanguage

      public String getConstraintLanguage()
      Formal language used in Application Schema.
      Specified by:
      get­Constraint­Language in interface Application­Schema­Information
      Returns:
      formal language used in Application Schema, or null.
    • setConstraintLanguage

      public void setConstraintLanguage(String newValue)
      Sets the formal language used in application schema.
      Parameters:
      new­Value - the new constraint language.
    • getSchemaAscii

      public URI getSchemaAscii()
      Full application schema given as an ASCII file.
      Upcoming API change
      URI may be replaced by Char­Sequence in GeoAPI 4.0.
      Specified by:
      get­Schema­Ascii in interface Application­Schema­Information
      Returns:
      application schema as an ASCII file, or null.
    • setSchemaAscii

      public void setSchemaAscii(URI newValue)
      Sets the full application schema given as an ASCII file.
      Upcoming API change
      URI may be replaced by Char­Sequence in GeoAPI 4.0.
      Parameters:
      new­Value - the new ASCII file.
    • getGraphicsFile

      public URI getGraphicsFile()
      Full application schema given as a graphics file.
      Upcoming API change
      As of ISO 19115:2014, URI is replaced by Online­Resource. This change may be applied in GeoAPI 4.0.
      Specified by:
      get­Graphics­File in interface Application­Schema­Information
      Returns:
      application schema as a graphics file, or null.
    • setGraphicsFile

      public void setGraphicsFile(URI newValue)
      Sets the full application schema given as a graphics file.
      Upcoming API change
      As of ISO 19115:2014, URI is replaced by Online­Resource. This change may be applied in GeoAPI 4.0.
      Parameters:
      new­Value - the new graphics file.
    • getSoftwareDevelopmentFile

      public URI getSoftwareDevelopmentFile()
      Full application schema given as a software development file.
      Upcoming API change
      As of ISO 19115:2014, URI is replaced by Online­Resource. This change may be applied in GeoAPI 4.0.
      Specified by:
      get­Software­Development­File in interface Application­Schema­Information
      Returns:
      application schema as a software development file, or null.
    • setSoftwareDevelopmentFile

      public void setSoftwareDevelopmentFile(URI newValue)
      Sets the full application schema given as a software development file.
      Upcoming API change
      As of ISO 19115:2014, URI is replaced by Online­Resource. This change may be applied in GeoAPI 4.0.
      Parameters:
      new­Value - the new software development file.
    • getSoftwareDevelopmentFileFormat

      public String getSoftwareDevelopmentFileFormat()
      Software dependent format used for the application schema software dependent file.
      Specified by:
      get­Software­Development­File­Format in interface Application­Schema­Information
      Returns:
      format used for the application schema software file, or null.
    • setSoftwareDevelopmentFileFormat

      public void setSoftwareDevelopmentFileFormat(String newValue)
      Sets the software dependent format used for the application schema software dependent file.
      Parameters:
      new­Value - the new software development file format.