Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultMetadataScope
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
@UML(identifier="MD_MetadataScope",
specification=ISO_19115)
public class DefaultMetadataScope
extends ISOMetadata
Information about the scope of the resource.
The following property is mandatory in a well-formed metadata according ISO 19115:
MD_MetadataScope
└─resourceScope……
Resource scopeNote on International Standard versions
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
This class is derived from a new type defined in the ISO 19115 international standard published in 2014, while GeoAPI 3.0 is based on the version published in 2003. Consequently this implementation class does not yet implement a GeoAPI interface, but is expected to do so after the next GeoAPI releases. When the interface will become available, all references to this implementation class in Apache SIS will be replaced be references to the
MetadataScope
interface.
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.5
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
Fields inherited from class ISOMetadata
identifiers
-
Constructor Summary
ConstructorDescriptionConstructs an initially empty metadata scope.Constructs a new instance initialized with the values from the specified metadata object.DefaultMetadataScope
(ScopeCode resourceScope, CharSequence name) Constructs a metadata scope initialized to the given value. -
Method Summary
Modifier and TypeMethodDescriptiongetName()
Returns a description of the scope, ornull
if none.Returns the code for the scope.void
setName
(InternationalString newValue) Sets the description of the scope.void
setResourceScope
(ScopeCode newValue) Sets the code for the scope.Methods inherited from class ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Constructor Details
-
DefaultMetadataScope
public DefaultMetadataScope()Constructs an initially empty metadata scope. -
DefaultMetadataScope
Constructs a metadata scope initialized to the given value.- Parameters:
resourceScope
- code for the scope.name
- description of the scope, ornull
if none.
-
DefaultMetadataScope
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.
-
-
Method Details
-
getResourceScope
@UML(identifier="resourceScope", obligation=MANDATORY, specification=ISO_19115) public ScopeCode getResourceScope()Returns the code for the scope.- Returns:
- the code for the scope.
-
setResourceScope
Sets the code for the scope.- Parameters:
newValue
- the new code for the scope.
-
getName
@UML(identifier="name", obligation=OPTIONAL, specification=ISO_19115) public InternationalString getName()Returns a description of the scope, ornull
if none.- Returns:
- description of the scope, or
null
if none.
-
setName
Sets the description of the scope.- Parameters:
newValue
- the new description of the scope.
-