org.geotoolkit.metadata.iso.acquisition
Class DefaultAcquisitionInformation

Object
  extended by AbstractMetadata
      extended by ModifiableMetadata
          extended by MetadataEntity
              extended by DefaultAcquisitionInformation
All Implemented Interfaces:
Serializable, Cloneable, LenientComparable, IdentifiedObject, AcquisitionInformation

@ThreadSafe
public class DefaultAcquisitionInformation
extends MetadataEntity
implements AcquisitionInformation

Designations for the measuring instruments, the platform carrying them, and the mission to which the data contributes.

Since:
3.03
Version:
3.19
Author:
Cédric Briançon (Geomatys), Martin Desruisseaux (Geomatys)
See Also:
Serialized Form
Module:
metadata/geotk-metadata (download)    View source code for this class

Field Summary
 
Fields inherited from class MetadataEntity
identifiers
 
Fields inherited from class AbstractMetadata
LOGGER
 
Constructor Summary
DefaultAcquisitionInformation()
          Constructs an initially empty acquisition information.
DefaultAcquisitionInformation(AcquisitionInformation source)
          Constructs a metadata entity initialized with the values from the specified metadata.
 
Method Summary
static DefaultAcquisitionInformation castOrCopy(AcquisitionInformation object)
          Returns a Geotk metadata implementation with the same values than the given arbitrary implementation.
 Collection<Plan> getAcquisitionPlans()
          Returns the plan as implemented by the acquisition.
 Collection<Requirement> getAcquisitionRequirements()
          Returns the requirement the data acquisition intends to satisfy.
 EnvironmentalRecord getEnvironmentalConditions()
          Returns a record of the environmental circumstances during the data acquisition.
 Collection<Instrument> getInstruments()
          Returns the general information about the instrument used in data acquisition.
 Collection<Objective> getObjectives()
          Returns the area or object to be sensed.
 Collection<Operation> getOperations()
          Returns the general information about an identifiable activity which provided the data.
 Collection<Platform> getPlatforms()
          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 MetadataEntity
getIdentifier, getIdentifierMap, getIdentifiers, getStandard
 
Methods inherited from class ModifiableMetadata
checkWritePermission, clone, collectionType, copyCollection, copyList, copySet, freeze, isModifiable, nonNullCollection, nonNullList, nonNullSet, prune, unmodifiable
 
Methods inherited from class AbstractMetadata
asMap, asTree, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, parse, toString
 
Methods inherited from class Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

DefaultAcquisitionInformation

public DefaultAcquisitionInformation()
Constructs an initially empty acquisition information.


DefaultAcquisitionInformation

public DefaultAcquisitionInformation(AcquisitionInformation source)
Constructs a metadata entity initialized with the values from the specified metadata.

Parameters:
source - The metadata to copy, or null if none.
Method Detail

castOrCopy

public static DefaultAcquisitionInformation castOrCopy(AcquisitionInformation object)
Returns a Geotk metadata implementation with the same values than the given arbitrary implementation. If the given object is null, then this method returns null. Otherwise if the given object is already a Geotk implementation, then the given object is returned unchanged. Otherwise a new Geotk implementation is created and initialized to the attribute values of the given object, using a shallow copy operation (i.e. attributes are not cloned).

Parameters:
object - The object to get as a Geotk implementation, or null if none.
Returns:
A Geotk implementation containing the values of the given object (may be the given object itself), or null if the argument was null.
Since:
3.18

getAcquisitionPlans

public Collection<Plan> getAcquisitionPlans()
Returns the plan as implemented by the acquisition.

Specified by:
getAcquisitionPlans in interface AcquisitionInformation

setAcquisitionPlans

public void setAcquisitionPlans(Collection<? extends Plan> newValues)
Sets the plan as implemented by the acquisition.

Parameters:
newValues - The new plan values.

getAcquisitionRequirements

public Collection<Requirement> getAcquisitionRequirements()
Returns the requirement the data acquisition intends to satisfy.

Specified by:
getAcquisitionRequirements in interface AcquisitionInformation

setAcquisitionRequirements

public void setAcquisitionRequirements(Collection<? extends Requirement> newValues)
Sets the requirement the data acquisition intends to satisfy.

Parameters:
newValues - The new acquisition requirements values.

getEnvironmentalConditions

public EnvironmentalRecord getEnvironmentalConditions()
Returns a record of the environmental circumstances during the data acquisition. null if unspecified.

Specified by:
getEnvironmentalConditions in interface AcquisitionInformation

setEnvironmentalConditions

public void setEnvironmentalConditions(EnvironmentalRecord newValue)
Sets the record of the environmental circumstances during the data acquisition.

Parameters:
newValue - The new environmental record value.

getInstruments

public Collection<Instrument> getInstruments()
Returns the general information about the instrument used in data acquisition.

Specified by:
getInstruments in interface AcquisitionInformation

setInstruments

public void setInstruments(Collection<? extends Instrument> newValues)
Sets the general information about the instrument used in data acquisition.

Parameters:
newValues - The new instruments values.

getObjectives

public Collection<Objective> getObjectives()
Returns the area or object to be sensed.

Specified by:
getObjectives in interface AcquisitionInformation

setObjectives

public void setObjectives(Collection<? extends Objective> newValues)
Sets the area or object to be sensed.

Parameters:
newValues - The new objectives values.

getOperations

public Collection<Operation> getOperations()
Returns the general information about an identifiable activity which provided the data.

Specified by:
getOperations in interface AcquisitionInformation

setOperations

public void setOperations(Collection<? extends Operation> newValues)
Sets the general information about an identifiable activity which provided the data.

Parameters:
newValues - The new operations values.

getPlatforms

public Collection<Platform> getPlatforms()
Returns the general information about the platform from which the data were taken.

Specified by:
getPlatforms in interface AcquisitionInformation

setPlatforms

public void setPlatforms(Collection<? extends Platform> newValues)
Sets the general information about the platform from which the data were taken.

Parameters:
newValues - The new platforms values.


Copyright © 2009-2012 Geotoolkit.org. All Rights Reserved.