Class DefaultAggregateInformation
- Object
-
- AbstractMetadata
-
- ModifiableMetadata
-
- ISOMetadata
-
- DefaultAssociatedResource
-
- DefaultAggregateInformation
-
- All Implemented Interfaces:
Serializable,Emptiable,LenientComparable,IdentifiedObject,AggregateInformation
public class DefaultAggregateInformation extends DefaultAssociatedResource implements AggregateInformation
Associated resource information. The following properties are mandatory or conditional (i.e. mandatory under some circumstances) in a well-formed metadata according ISO 19115:According ISO 19115, at least one of name and metadata reference shall be provided.MD_AggregateInformation├─associationType…………Type of relation between the resources.├─metadataReference……Reference to the metadata of the associated resource.│ ├─title…………………………Name by which the cited resource is known.│ └─date……………………………Reference date for the cited resource.└─name………………………………………Citation information about the associated resource.Upcoming API change — renaming
As of ISO 19115:2014,AggregateInformationhas been renamedAssociatedResource. This class will be replaced byDefaultAssociatedResourcewhen GeoAPI will provide theAssociatedResourceinterface (tentatively in GeoAPI 3.1 or 4.0).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:
- Serialized Form
Defined in the
sis-metadatamodule
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class ModifiableMetadata
ModifiableMetadata.State
-
-
Field Summary
-
Fields inherited from class ISOMetadata
identifiers
-
-
Constructor Summary
Constructors Constructor Description DefaultAggregateInformation()Constructs an initially empty Aggregate dataset information.DefaultAggregateInformation(AggregateInformation object)Constructs a new instance initialized with the values from the specified metadata object.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static DefaultAggregateInformationcastOrCopy(AggregateInformation object)Returns a SIS metadata implementation with the values of the given arbitrary implementation.IdentifiergetAggregateDataSetIdentifier()Deprecated.As of ISO 19115:2014, replaced by the first identifier ofgetAggregateDataSetName().CitationgetAggregateDataSetName()Deprecated.As of ISO 19115:2014, replaced byDefaultAssociatedResource.getName().voidsetAggregateDataSetIdentifier(Identifier newValue)Deprecated.As of ISO 19115:2014, replaced by an identifier ofgetAggregateDataSetName().voidsetAggregateDataSetName(Citation newValue)Deprecated.As of ISO 19115:2014, replaced byDefaultAssociatedResource.setName(Citation).-
Methods inherited from class DefaultAssociatedResource
getAssociationType, getInitiativeType, getMetadataReference, getName, setAssociationType, setInitiativeType, setMetadataReference, setName
-
Methods inherited from class ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
-
Methods inherited from class ModifiableMetadata
checkWritePermission, checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, freeze, isModifiable, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, unmodifiable, writeCollection, writeList, writeMap, writeSet
-
Methods inherited from class AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Methods inherited from class Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface AggregateInformation
getAssociationType, getInitiativeType
-
-
-
-
Constructor Detail
-
DefaultAggregateInformation
public DefaultAggregateInformation()
Constructs an initially empty Aggregate dataset information.
-
DefaultAggregateInformation
public DefaultAggregateInformation(AggregateInformation object)
Constructs a new instance initialized with the values from the specified metadata object. This is a shallow copy constructor, since the other metadata contained in the given object are not recursively copied.- Parameters:
object- the metadata to copy values from, ornullif none.
-
-
Method Detail
-
castOrCopy
public static DefaultAggregateInformation castOrCopy(AggregateInformation 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
DefaultAggregateInformation, then it is returned unchanged. - Otherwise a new
DefaultAggregateInformationinstance is created using the copy constructor and returned. Note that this is a shallow copy operation, since the other metadata contained in the given object are not recursively copied.
- Parameters:
object- the object to get as a SIS implementation, ornullif 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
-
getAggregateDataSetName
@Deprecated public Citation getAggregateDataSetName()
Deprecated.As of ISO 19115:2014, replaced byDefaultAssociatedResource.getName().Citation information about the aggregate dataset.- Specified by:
getAggregateDataSetNamein interfaceAggregateInformation- Returns:
- citation information about the aggregate dataset, or
null.
-
setAggregateDataSetName
@Deprecated public void setAggregateDataSetName(Citation newValue)
Deprecated.As of ISO 19115:2014, replaced byDefaultAssociatedResource.setName(Citation).Sets the citation information about the aggregate dataset.- Parameters:
newValue- the new citation.
-
getAggregateDataSetIdentifier
@Deprecated public Identifier getAggregateDataSetIdentifier()
Deprecated.As of ISO 19115:2014, replaced by the first identifier ofgetAggregateDataSetName().Identification information about aggregate dataset.- Specified by:
getAggregateDataSetIdentifierin interfaceAggregateInformation- Returns:
- identification information about aggregate dataset, or
null.
-
setAggregateDataSetIdentifier
@Deprecated public void setAggregateDataSetIdentifier(Identifier newValue)
Deprecated.As of ISO 19115:2014, replaced by an identifier ofgetAggregateDataSetName().Sets the identification information about aggregate dataset.- Parameters:
newValue- the new identifier.
-
-