Class DefaultProcessing
Object
AbstractMetadata
ModifiableMetadata
ISOMetadata
DefaultProcessing
- All Implemented Interfaces:
- Serializable,- Emptiable,- LenientComparable,- IdentifiedObject,- Processing
Comprehensive information about the procedure(s), process(es) and algorithm(s) applied in the process step.
 The following properties are mandatory in a well-formed metadata according ISO 19115:
 
 
LE_Processing
   └─identifier…… Information to identify the processing package that produced the data.
       └─code………… Alphanumeric value identifying an instance in the namespace.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 range element description.DefaultProcessing(Processing object) Constructs a new instance initialized with the values from the specified metadata object.
- 
Method SummaryModifier and TypeMethodDescriptionstatic DefaultProcessingcastOrCopy(Processing object) Returns a SIS metadata implementation with the values of the given arbitrary implementation.Returns the details of the methodology by which geographic information was derived from the instrument readings.Returns the reference to documentation describing the processing.Returns the information to identify the processing package that produced the data.Returns the additional details about the processing procedures.Returns the parameters to control the processing operations, entered at run time.Returns the reference to document describing processing software.voidsetAlgorithms(Collection<? extends Algorithm> newValues) Sets the details of the methodology by which geographic information was derived from the instrument readings.voidsetDocumentations(Collection<? extends Citation> newValues) Sets the reference to documentation describing the processing.voidsetIdentifier(Identifier newValue) Sets the information to identify the processing package that produced the data.voidsetProcedureDescription(InternationalString newValue) Sets the additional details about the processing procedures.voidsetRunTimeParameters(InternationalString newValue) Sets the parameters to control the processing operations, entered at run time.voidsetSoftwareReferences(Collection<? extends Citation> newValues) Sets the reference to document describing processing software.Methods inherited from class ISOMetadatagetIdentifierMap, getIdentifiers, getStandard, 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- 
DefaultProcessingpublic DefaultProcessing()Constructs an initially empty range element description.
- 
DefaultProcessingConstructs 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
       DefaultProcessing, then it is returned unchanged.
- Otherwise a new DefaultProcessinginstance 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 
- 
getIdentifierReturns the information to identify the processing package that produced the data.- Specified by:
- getIdentifierin interface- Processing
- Overrides:
- getIdentifierin class- ISOMetadata
- Returns:
- identifier of the processing package that produced the data, or null.
 
- 
setIdentifierSets the information to identify the processing package that produced the data.- Overrides:
- setIdentifierin class- ISOMetadata
- Parameters:
- newValue- the new identifier value.
 
- 
getSoftwareReferencesReturns the reference to document describing processing software.- Specified by:
- getSoftwareReferencesin interface- Processing
- Returns:
- document describing processing software.
 
- 
setSoftwareReferencesSets the reference to document describing processing software.- Parameters:
- newValues- the new software references values.
 
- 
getProcedureDescriptionReturns the additional details about the processing procedures.nullif unspecified.- Specified by:
- getProcedureDescriptionin interface- Processing
- Returns:
- processing procedures, or null.
 
- 
setProcedureDescriptionSets the additional details about the processing procedures.- Parameters:
- newValue- the new procedure description value.
 
- 
getDocumentationsReturns the reference to documentation describing the processing.- Specified by:
- getDocumentationsin interface- Processing
- Returns:
- documentation describing the processing.
 
- 
setDocumentationsSets the reference to documentation describing the processing.- Parameters:
- newValues- the new documentations values.
 
- 
getRunTimeParametersReturns the parameters to control the processing operations, entered at run time.- Specified by:
- getRunTimeParametersin interface- Processing
- Returns:
- parameters to control the processing operations, or null.
 
- 
setRunTimeParametersSets the parameters to control the processing operations, entered at run time.- Parameters:
- newValue- the new runtime parameter value.
 
- 
getAlgorithmsReturns the details of the methodology by which geographic information was derived from the instrument readings.- Specified by:
- getAlgorithmsin interface- Processing
- Returns:
- methodology by which geographic information was derived from the instrument readings.
 
- 
setAlgorithmsSets the details of the methodology by which geographic information was derived from the instrument readings.- Parameters:
- newValues- the new algorithms values.
 
 
-