Package org.opengis.metadata.lineage
Interface Processing
-
@UML(identifier="LE_Processing", specification=ISO_19115_2) public interface Processing
Comprehensive information about the procedure(s), process(es) and algorithm(s) applied in the process step.- Since:
- 2.3
-
-
Method Summary
Modifier and Type Method Description default Collection<? extends Algorithm>getAlgorithms()Details of the methodology by which geographic information was derived from the instrument readings.default Collection<? extends Citation>getDocumentations()Reference to documentation describing the processing.IdentifiergetIdentifier()Information to identify the processing package that produced the data.default InternationalStringgetProcedureDescription()Additional details about the processing procedures.default InternationalStringgetRunTimeParameters()Parameters to control the processing operations, entered at run time.default Collection<? extends Citation>getSoftwareReferences()Reference to document describing processing software.
-
-
-
Method Detail
-
getIdentifier
@UML(identifier="identifier", obligation=MANDATORY, specification=ISO_19115_2) Identifier getIdentifier()
Information to identify the processing package that produced the data.- Returns:
- identifier of the processing package that produced the data.
-
getSoftwareReferences
@UML(identifier="softwareReference", obligation=OPTIONAL, specification=ISO_19115_2) default Collection<? extends Citation> getSoftwareReferences()
Reference to document describing processing software.- Returns:
- document describing processing software.
-
getProcedureDescription
@UML(identifier="procedureDescription", obligation=OPTIONAL, specification=ISO_19115_2) default InternationalString getProcedureDescription()
Additional details about the processing procedures.- Returns:
- processing procedures, or
null.
-
getDocumentations
@UML(identifier="documentation", obligation=OPTIONAL, specification=ISO_19115_2) default Collection<? extends Citation> getDocumentations()
Reference to documentation describing the processing.- Returns:
- documentation describing the processing.
-
getRunTimeParameters
@UML(identifier="runTimeParameters", obligation=OPTIONAL, specification=ISO_19115_2) default InternationalString getRunTimeParameters()
Parameters to control the processing operations, entered at run time.- Returns:
- parameters to control the processing operations, or
null.
-
getAlgorithms
@UML(identifier="algorithm", obligation=OPTIONAL, specification=ISO_19115_2) default Collection<? extends Algorithm> getAlgorithms()
Details of the methodology by which geographic information was derived from the instrument readings.- Returns:
- methodology by which geographic information was derived from the instrument readings.
-
-