Module org.apache.sis.metadata
Class DefaultAcquisitionInformation
Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultAcquisitionInformation
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,AcquisitionInformation
Designations for the measuring instruments, the platform carrying them, and the mission to
which the data contributes.
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:
-
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 acquisition information.Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptioncastOrCopy
(AcquisitionInformation object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Returns the plan as implemented by the acquisition.Returns the requirement the data acquisition intends to satisfy.Returns a record of the environmental circumstances during the data acquisition.Returns the general information about the instrument used in data acquisition.Returns the area or object to be sensed.Returns the general information about an identifiable activity which provided the data.Returns the general information about the platform from which the data were taken.void
setAcquisitionPlans
(Collection<? extends Plan> newValues) Sets the plan as implemented by the acquisition.void
setAcquisitionRequirements
(Collection<? extends Requirement> newValues) Sets the requirement the data acquisition intends to satisfy.void
setEnvironmentalConditions
(EnvironmentalRecord newValue) Sets the record of the environmental circumstances during the data acquisition.void
setInstruments
(Collection<? extends Instrument> newValues) Sets the general information about the instrument used in data acquisition.void
setObjectives
(Collection<? extends Objective> newValues) Sets the area or object to be sensed.void
setOperations
(Collection<? extends Operation> newValues) Sets the general information about an identifiable activity which provided the data.void
setPlatforms
(Collection<? extends Platform> newValues) Sets the general information about the platform from which the data were taken.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
-
DefaultAcquisitionInformation
public DefaultAcquisitionInformation()Constructs an initially empty acquisition information. -
DefaultAcquisitionInformation
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
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
DefaultAcquisitionInformation
, then it is returned unchanged. - Otherwise a new
DefaultAcquisitionInformation
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
-
getAcquisitionPlans
Returns the plan as implemented by the acquisition.- Specified by:
getAcquisitionPlans
in interfaceAcquisitionInformation
- Returns:
- plan as implemented by the acquisition.
-
setAcquisitionPlans
Sets the plan as implemented by the acquisition.- Parameters:
newValues
- the new plan values.
-
getAcquisitionRequirements
Returns the requirement the data acquisition intends to satisfy.- Specified by:
getAcquisitionRequirements
in interfaceAcquisitionInformation
- Returns:
- requirement the data acquisition intends to satisfy.
-
setAcquisitionRequirements
Sets the requirement the data acquisition intends to satisfy.- Parameters:
newValues
- the new acquisition requirements values.
-
getEnvironmentalConditions
Returns a record of the environmental circumstances during the data acquisition.null
if unspecified.- Specified by:
getEnvironmentalConditions
in interfaceAcquisitionInformation
- Returns:
- record of the environmental circumstances, or
null
.
-
setEnvironmentalConditions
Sets the record of the environmental circumstances during the data acquisition.- Parameters:
newValue
- the new environmental record value.
-
getInstruments
Returns the general information about the instrument used in data acquisition.- Specified by:
getInstruments
in interfaceAcquisitionInformation
- Returns:
- instrument used in data acquisition.
-
setInstruments
Sets the general information about the instrument used in data acquisition.- Parameters:
newValues
- the new instruments values.
-
getObjectives
Returns the area or object to be sensed.- Specified by:
getObjectives
in interfaceAcquisitionInformation
- Returns:
- area or object to be sensed.
-
setObjectives
Sets the area or object to be sensed.- Parameters:
newValues
- the new objectives values.
-
getOperations
Returns the general information about an identifiable activity which provided the data.- Specified by:
getOperations
in interfaceAcquisitionInformation
- Returns:
- identifiable activity which provided the data.
-
setOperations
Sets the general information about an identifiable activity which provided the data.- Parameters:
newValues
- the new operations values.
-
getPlatforms
Returns the general information about the platform from which the data were taken.- Specified by:
getPlatforms
in interfaceAcquisitionInformation
- Returns:
- platform from which the data were taken.
-
setPlatforms
Sets the general information about the platform from which the data were taken.- Parameters:
newValues
- the new platforms values.
-