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 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 acquisition information.Constructs a new instance initialized with the values from the specified metadata object.
- 
Method SummaryModifier 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.voidsetAcquisitionPlans(Collection<? extends Plan> newValues) Sets the plan as implemented by the acquisition.voidsetAcquisitionRequirements(Collection<? extends Requirement> newValues) Sets the requirement the data acquisition intends to satisfy.voidsetEnvironmentalConditions(EnvironmentalRecord newValue) Sets the record of the environmental circumstances during the data acquisition.voidsetInstruments(Collection<? extends Instrument> newValues) Sets the general information about the instrument used in data acquisition.voidsetObjectives(Collection<? extends Objective> newValues) Sets the area or object to be sensed.voidsetOperations(Collection<? extends Operation> newValues) Sets the general information about an identifiable activity which provided the data.voidsetPlatforms(Collection<? extends Platform> newValues) Sets the general information about the platform from which the data were taken.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- 
DefaultAcquisitionInformationpublic DefaultAcquisitionInformation()Constructs an initially empty acquisition information.
- 
DefaultAcquisitionInformationConstructs 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
       DefaultAcquisitionInformation, then it is returned unchanged.
- Otherwise a new DefaultAcquisitionInformationinstance 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 
- 
getAcquisitionPlansReturns the plan as implemented by the acquisition.- Specified by:
- getAcquisitionPlansin interface- AcquisitionInformation
- Returns:
- plan as implemented by the acquisition.
 
- 
setAcquisitionPlansSets the plan as implemented by the acquisition.- Parameters:
- newValues- the new plan values.
 
- 
getAcquisitionRequirementsReturns the requirement the data acquisition intends to satisfy.- Specified by:
- getAcquisitionRequirementsin interface- AcquisitionInformation
- Returns:
- requirement the data acquisition intends to satisfy.
 
- 
setAcquisitionRequirementsSets the requirement the data acquisition intends to satisfy.- Parameters:
- newValues- the new acquisition requirements values.
 
- 
getEnvironmentalConditionsReturns a record of the environmental circumstances during the data acquisition.nullif unspecified.- Specified by:
- getEnvironmentalConditionsin interface- AcquisitionInformation
- Returns:
- record of the environmental circumstances, or null.
 
- 
setEnvironmentalConditionsSets the record of the environmental circumstances during the data acquisition.- Parameters:
- newValue- the new environmental record value.
 
- 
getInstrumentsReturns the general information about the instrument used in data acquisition.- Specified by:
- getInstrumentsin interface- AcquisitionInformation
- Returns:
- instrument used in data acquisition.
 
- 
setInstrumentsSets the general information about the instrument used in data acquisition.- Parameters:
- newValues- the new instruments values.
 
- 
getObjectivesReturns the area or object to be sensed.- Specified by:
- getObjectivesin interface- AcquisitionInformation
- Returns:
- area or object to be sensed.
 
- 
setObjectivesSets the area or object to be sensed.- Parameters:
- newValues- the new objectives values.
 
- 
getOperationsReturns the general information about an identifiable activity which provided the data.- Specified by:
- getOperationsin interface- AcquisitionInformation
- Returns:
- identifiable activity which provided the data.
 
- 
setOperationsSets the general information about an identifiable activity which provided the data.- Parameters:
- newValues- the new operations values.
 
- 
getPlatformsReturns the general information about the platform from which the data were taken.- Specified by:
- getPlatformsin interface- AcquisitionInformation
- Returns:
- platform from which the data were taken.
 
- 
setPlatformsSets the general information about the platform from which the data were taken.- Parameters:
- newValues- the new platforms values.
 
 
-