Class DefaultAcquisitionInformation
java.lang.Object
org.apache.sis.metadata.AbstractMetadata
org.apache.sis.metadata.ModifiableMetadata
org.apache.sis.metadata.iso.ISOMetadata
org.apache.sis.metadata.iso.acquisition.DefaultAcquisitionInformation
- All Implemented Interfaces:
Serializable
,Emptiable
,LenientComparable
,IdentifiedObject
,org.opengis.metadata.acquisition.AcquisitionInformation
public class DefaultAcquisitionInformation
extends ISOMetadata
implements org.opengis.metadata.acquisition.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
- Version:
- 1.0
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class org.apache.sis.metadata.ModifiableMetadata
ModifiableMetadata.State
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate Collection
<org.opengis.metadata.acquisition.Plan> Identifies the plan as implemented by the acquisition.private Collection
<org.opengis.metadata.acquisition.Requirement> Identifies the requirement the data acquisition intends to satisfy.private org.opengis.metadata.acquisition.EnvironmentalRecord
A record of the environmental circumstances during the data acquisition.private Collection
<org.opengis.metadata.acquisition.Instrument> General information about the instrument used in data acquisition.private Collection
<org.opengis.metadata.acquisition.Objective> Identification of the area or object to be sensed.private Collection
<org.opengis.metadata.acquisition.Operation> General information about an identifiable activity which provided the data.private Collection
<org.opengis.metadata.acquisition.Platform> General information about the platform from which the data were taken.private static final long
Serial number for inter-operability with different versions.Fields inherited from class org.apache.sis.metadata.iso.ISOMetadata
identifiers
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an initially empty acquisition information.DefaultAcquisitionInformation
(org.opengis.metadata.acquisition.AcquisitionInformation object) Constructs a new instance initialized with the values from the specified metadata object. -
Method Summary
Modifier and TypeMethodDescriptioncastOrCopy
(org.opengis.metadata.acquisition.AcquisitionInformation object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Collection
<org.opengis.metadata.acquisition.Plan> Returns the plan as implemented by the acquisition.Collection
<org.opengis.metadata.acquisition.Requirement> Returns the requirement the data acquisition intends to satisfy.org.opengis.metadata.acquisition.EnvironmentalRecord
Returns a record of the environmental circumstances during the data acquisition.Collection
<org.opengis.metadata.acquisition.Instrument> Returns the general information about the instrument used in data acquisition.Collection
<org.opengis.metadata.acquisition.Objective> Returns the area or object to be sensed.Collection
<org.opengis.metadata.acquisition.Operation> Returns the general information about an identifiable activity which provided the data.Collection
<org.opengis.metadata.acquisition.Platform> Returns the general information about the platform from which the data were taken.void
setAcquisitionPlans
(Collection<? extends org.opengis.metadata.acquisition.Plan> newValues) Sets the plan as implemented by the acquisition.void
setAcquisitionRequirements
(Collection<? extends org.opengis.metadata.acquisition.Requirement> newValues) Sets the requirement the data acquisition intends to satisfy.void
setEnvironmentalConditions
(org.opengis.metadata.acquisition.EnvironmentalRecord newValue) Sets the record of the environmental circumstances during the data acquisition.void
setInstruments
(Collection<? extends org.opengis.metadata.acquisition.Instrument> newValues) Sets the general information about the instrument used in data acquisition.void
setObjectives
(Collection<? extends org.opengis.metadata.acquisition.Objective> newValues) Sets the area or object to be sensed.void
setOperations
(Collection<? extends org.opengis.metadata.acquisition.Operation> newValues) Sets the general information about an identifiable activity which provided the data.void
setPlatforms
(Collection<? extends org.opengis.metadata.acquisition.Platform> newValues) Sets the general information about the platform from which the data were taken.Methods inherited from class org.apache.sis.metadata.iso.ISOMetadata
getIdentifier, getIdentifierMap, getIdentifiers, getStandard, setIdentifier, transitionTo
Methods inherited from class org.apache.sis.metadata.ModifiableMetadata
checkWritePermission, collectionType, copyCollection, copyList, copyMap, copySet, deepCopy, nonNullCollection, nonNullList, nonNullMap, nonNullSet, singleton, state, writeCollection, writeList, writeMap, writeSet
Methods inherited from class org.apache.sis.metadata.AbstractMetadata
asMap, asTreeTable, equals, equals, getInterface, hashCode, isEmpty, prune, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUIDSerial number for inter-operability with different versions.- See Also:
-
acquisitionPlans
Identifies the plan as implemented by the acquisition. -
acquisitionRequirements
Identifies the requirement the data acquisition intends to satisfy. -
environmentalConditions
private org.opengis.metadata.acquisition.EnvironmentalRecord environmentalConditionsA record of the environmental circumstances during the data acquisition. -
instruments
General information about the instrument used in data acquisition. -
objectives
Identification of the area or object to be sensed. -
operations
General information about an identifiable activity which provided the data. -
platforms
General information about the platform from which the data were taken.
-
-
Constructor Details
-
DefaultAcquisitionInformation
public DefaultAcquisitionInformation()Constructs an initially empty acquisition information. -
DefaultAcquisitionInformation
public DefaultAcquisitionInformation(org.opengis.metadata.acquisition.AcquisitionInformation object) 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
public static DefaultAcquisitionInformation castOrCopy(org.opengis.metadata.acquisition.AcquisitionInformation 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
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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- plan as implemented by the acquisition.
-
setAcquisitionPlans
public void setAcquisitionPlans(Collection<? extends org.opengis.metadata.acquisition.Plan> newValues) 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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- requirement the data acquisition intends to satisfy.
-
setAcquisitionRequirements
public void setAcquisitionRequirements(Collection<? extends org.opengis.metadata.acquisition.Requirement> newValues) Sets the requirement the data acquisition intends to satisfy.- Parameters:
newValues
- the new acquisition requirements values.
-
getEnvironmentalConditions
public org.opengis.metadata.acquisition.EnvironmentalRecord getEnvironmentalConditions()Returns a record of the environmental circumstances during the data acquisition.null
if unspecified.- Specified by:
getEnvironmentalConditions
in interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- record of the environmental circumstances, or
null
.
-
setEnvironmentalConditions
public void setEnvironmentalConditions(org.opengis.metadata.acquisition.EnvironmentalRecord newValue) 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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- instrument used in data acquisition.
-
setInstruments
public void setInstruments(Collection<? extends org.opengis.metadata.acquisition.Instrument> newValues) 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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- area or object to be sensed.
-
setObjectives
public void setObjectives(Collection<? extends org.opengis.metadata.acquisition.Objective> newValues) 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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- Returns:
- identifiable activity which provided the data.
-
setOperations
public void setOperations(Collection<? extends org.opengis.metadata.acquisition.Operation> newValues) 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 interfaceorg.opengis.metadata.acquisition.AcquisitionInformation
- 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.
-