Package org.apache.sis.metadata.iso
Class DefaultApplicationSchemaInformation
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.DefaultApplicationSchemaInformation
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,org.opengis.metadata.ApplicationSchemaInformation
public class DefaultApplicationSchemaInformation
extends ISOMetadata
implements org.opengis.metadata.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_ApplicationSchemaInformation
├─name……………………………………………………………
Name of the application schema used.
│ ├─title………………………………………………
Name by which the cited resource is known.
│ └─date…………………………………………………
Reference date for the cited resource.
├─schemaLanguage…………………………………
Identification of the schema language used.
└─constraintLanguage………………………
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
- Version:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate String
Formal language used in Application Schema.private URI
Full application schema given as a graphics file.private org.opengis.metadata.citation.Citation
Name of the application schema used.private URI
Full application schema given as an ASCII file.private String
Identification of the schema language used.private static final long
Serial number for inter-operability with different versions.private URI
Full application schema given as a software development file.private String
Software dependent format used for the application schema software dependent file.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct an initially empty application schema information.DefaultApplicationSchemaInformation
(org.opengis.metadata.ApplicationSchemaInformation object) Constructs a new instance initialized with the values from the specified metadata object.DefaultApplicationSchemaInformation
(org.opengis.metadata.citation.Citation name, String schemaLanguage, String constraintLanguage) Creates a application schema information initialized to the specified values. -
Method Summary
Modifier and TypeMethodDescriptioncastOrCopy
(org.opengis.metadata.ApplicationSchemaInformation object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Formal language used in Application Schema.Full application schema given as a graphics file.org.opengis.metadata.citation.Citation
getName()
Name of the application schema used.Full application schema given as an ASCII file.Identification of the schema language used.Full application schema given as a software development file.Software dependent format used for the application schema software dependent file.void
setConstraintLanguage
(String newValue) Sets the formal language used in application schema.void
setGraphicsFile
(URI newValue) Sets the full application schema given as a graphics file.void
setName
(org.opengis.metadata.citation.Citation newValue) Sets the name of the application schema used.void
setSchemaAscii
(URI newValue) Sets the full application schema given as an ASCII file.void
setSchemaLanguage
(String newValue) Sets the identification of the schema language used.void
setSoftwareDevelopmentFile
(URI newValue) Sets the full application schema given as a software development file.void
setSoftwareDevelopmentFileFormat
(String newValue) Sets the software dependent format used for the application schema software dependent file.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class org.apache.sis.metadata.AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
name
private org.opengis.metadata.citation.Citation nameName of the application schema used. -
schemaLanguage
Identification of the schema language used. -
constraintLanguage
Formal language used in Application Schema. -
schemaAscii
Full application schema given as an ASCII file. -
graphicsFile
Full application schema given as a graphics file. -
softwareDevelopmentFile
Full application schema given as a software development file. -
softwareDevelopmentFileFormat
Software dependent format used for the application schema software dependent file.
-
-
Constructor Details
-
DefaultApplicationSchemaInformation
public DefaultApplicationSchemaInformation()Construct an initially empty application schema information. -
DefaultApplicationSchemaInformation
public DefaultApplicationSchemaInformation(org.opengis.metadata.citation.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.schemaLanguage
- the the identification of the schema language used.constraintLanguage
- the formal language used in application schema.
-
DefaultApplicationSchemaInformation
public DefaultApplicationSchemaInformation(org.opengis.metadata.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, ornull
if none.- See Also:
-
-
Method Details
-
castOrCopy
public static DefaultApplicationSchemaInformation castOrCopy(org.opengis.metadata.ApplicationSchemaInformation object) 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 returnsnull
. - Otherwise if the given object is already an instance of
DefaultApplicationSchemaInformation
, then it is returned unchanged. - Otherwise a new
DefaultApplicationSchemaInformation
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, ornull
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.
- If the given object is
-
getName
public org.opengis.metadata.citation.Citation getName()Name of the application schema used.- Specified by:
getName
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- name of the application schema, or
null
.
-
setName
public void setName(org.opengis.metadata.citation.Citation newValue) Sets the name of the application schema used.- Parameters:
newValue
- the new name.
-
getSchemaLanguage
Identification of the schema language used.- Specified by:
getSchemaLanguage
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- the schema language used, or
null
.
-
setSchemaLanguage
Sets the identification of the schema language used.- Parameters:
newValue
- the new schema language.
-
getConstraintLanguage
Formal language used in Application Schema.- Specified by:
getConstraintLanguage
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- formal language used in Application Schema, or
null
.
-
setConstraintLanguage
Sets the formal language used in application schema.- Parameters:
newValue
- the new constraint language.
-
getSchemaAscii
Full application schema given as an ASCII file.- Specified by:
getSchemaAscii
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- application schema as an ASCII file, or
null
.
-
setSchemaAscii
Sets the full application schema given as an ASCII file.- Parameters:
newValue
- the new ASCII file.
-
getGraphicsFile
Full application schema given as a graphics file.Upcoming API change
As of ISO 19115:2014,URI
is replaced byOnlineResource
. This change may be applied in GeoAPI 4.0.- Specified by:
getGraphicsFile
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- application schema as a graphics file, or
null
.
-
setGraphicsFile
Sets the full application schema given as a graphics file.Upcoming API change
As of ISO 19115:2014,URI
is replaced byOnlineResource
. This change may be applied in GeoAPI 4.0.- Parameters:
newValue
- the new graphics file.
-
getSoftwareDevelopmentFile
Full application schema given as a software development file.Upcoming API change
As of ISO 19115:2014,URI
is replaced byOnlineResource
. This change may be applied in GeoAPI 4.0.- Specified by:
getSoftwareDevelopmentFile
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- application schema as a software development file, or
null
.
-
setSoftwareDevelopmentFile
Sets the full application schema given as a software development file.Upcoming API change
As of ISO 19115:2014,URI
is replaced byOnlineResource
. This change may be applied in GeoAPI 4.0.- Parameters:
newValue
- the new software development file.
-
getSoftwareDevelopmentFileFormat
Software dependent format used for the application schema software dependent file.- Specified by:
getSoftwareDevelopmentFileFormat
in interfaceorg.opengis.metadata.ApplicationSchemaInformation
- Returns:
- format used for the application schema software file, or
null
.
-
setSoftwareDevelopmentFileFormat
Sets the software dependent format used for the application schema software dependent file.- Parameters:
newValue
- the new software development file format.
-