Class DefaultScope
Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultScope
- All Implemented Interfaces:
- Serializable,- Emptiable,- LenientComparable,- IdentifiedObject,- Scope
- Direct Known Subclasses:
- DefaultScope
The target resource and physical extent for which information is reported.
 The following properties are mandatory or conditional (i.e. mandatory under some circumstances)
 in a well-formed metadata according ISO 19115:
 
 
MD_Scope
   ├─level………………………………………………… Hierarchical level of the data specified by the scope.
   └─levelDescription…………………… Detailed description about the level of the data specified by the scope.
       ├─attributeInstances…… Attribute instances to which the information applies.
       ├─attributes………………………… Attributes to which the information applies.
       ├─dataset………………………………… Dataset to which the information applies.
       ├─featureInstances………… Feature instances to which the information applies.
       ├─features……………………………… Features to which the information applies.
       └─other……………………………………… Class of information that does not fall into the other categories.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 XMLinstead.
- Since:
- 0.3
- See Also:
Defined in the sis-metadata module
- 
Nested Class SummaryNested classes/interfaces inherited from class ModifiableMetadataModifiableMetadata.State
- 
Field SummaryFields inherited from class ISOMetadataidentifiers
- 
Constructor SummaryConstructorsConstructorDescriptionConstructs an initially empty scope.DefaultScope(ScopeCode level) Creates a scope initialized to the given level.DefaultScope(Scope object) Constructs a new instance initialized with the values from the specified metadata object.
- 
Method SummaryModifier and TypeMethodDescriptionstatic DefaultScopecastOrCopy(Scope object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Deprecated.Returns information about the spatial, vertical and temporal extents of the resource specified by the scope.Returns the hierarchical level of the data specified by the scope.Returns detailed descriptions about the level of the data specified by the scope.voidsetExtent(Extent newValue) Deprecated.As of ISO 19115:2014, replaced bysetExtents(Collection).voidsetExtents(Collection<? extends Extent> newValues) Sets information about the spatial, vertical and temporal extents of the resource specified by the scope.voidsetLevel(ScopeCode newValue) Sets the hierarchical level of the data specified by the scope.voidsetLevelDescription(Collection<? extends ScopeDescription> newValues) Sets detailed descriptions about the level of the data specified by the scope.Methods inherited from class ISOMetadatagetIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionToMethods inherited from class ModifiableMetadatacheckWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSetMethods inherited from class AbstractMetadataasMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
- 
Constructor Details- 
DefaultScopepublic DefaultScope()Constructs an initially empty scope.
- 
DefaultScopeCreates a scope initialized to the given level.- Parameters:
- level- the hierarchical level of the data specified by the scope.
 
- 
DefaultScopeConstructs 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- nullif none.
- See Also:
 
 
- 
- 
Method Details- 
castOrCopyReturns 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
       DefaultScope, then it is returned unchanged.
- Otherwise a new DefaultScopeinstance 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- nullif none.
- Returns:
- a SIS implementation containing the values of the given object (may be the
         given object itself), or nullif the argument was null.
 
- If the given object is 
- 
getLevelReturns the hierarchical level of the data specified by the scope.
- 
setLevelSets the hierarchical level of the data specified by the scope.- Parameters:
- newValue- the new level.
 
- 
getExtents@UML(identifier="extent", obligation=OPTIONAL, specification=ISO_19115) public Collection<Extent> getExtents()Returns information about the spatial, vertical and temporal extents of the resource specified by the scope.- Returns:
- information about the extent of the resource.
- Since:
- 0.5
 
- 
setExtentsSets information about the spatial, vertical and temporal extents of the resource specified by the scope.- Parameters:
- newValues- New information about the extent of the resource.
- Since:
- 0.5
 
- 
getExtentDeprecated.As of ISO 19115:2014, replaced bygetExtents().Information about the spatial, vertical and temporal extent of the data specified by the scope. This method fetches the value from the extents collection.- Specified by:
- getExtentin interface- Scope
- Returns:
- Information about the extent of the data, or null.
 
- 
setExtentDeprecated.As of ISO 19115:2014, replaced bysetExtents(Collection).Sets information about the spatial, vertical and temporal extent of the data specified by the scope. This method stores the value in the extents collection.- Parameters:
- newValue- The new extent.
 
- 
getLevelDescriptionReturns detailed descriptions about the level of the data specified by the scope.- Specified by:
- getLevelDescriptionin interface- Scope
- Returns:
- detailed description about the level of the data.
 
- 
setLevelDescriptionSets detailed descriptions about the level of the data specified by the scope.- Parameters:
- newValues- the new level description.
 
 
- 
getExtents().