Interface DigitalTransferOptions
-
@UML(identifier="MD_DigitalTransferOptions", specification=ISO_19115) public interface DigitalTransferOptions
Technical means and media by which a resource is obtained from the distributor.- Since:
- 2.0
-
-
Method Summary
Modifier and Type Method Description default Collection<? extends Format>getDistributionFormats()Formats of distribution.MediumgetOffLine()Deprecated.As of ISO 19115:2014, replaced bygetOffLines().default Collection<? extends Medium>getOffLines()Information about offline media on which the resource can be obtained.default Collection<? extends OnlineResource>getOnLines()Information about online sources from which the resource can be obtained.default PeriodDurationgetTransferFrequency()Rate of occurrence of distribution.default DoublegetTransferSize()Estimated size of a unit in the specified transfer format, expressed in megabytes.default InternationalStringgetUnitsOfDistribution()Tiles, layers, geographic areas, etc., in which data is available.
-
-
-
Method Detail
-
getUnitsOfDistribution
@UML(identifier="unitsOfDistribution", obligation=OPTIONAL, specification=ISO_19115) default InternationalString getUnitsOfDistribution()
Tiles, layers, geographic areas, etc., in which data is available. Units of distribution apply to both onLine and offLine distributions.- Returns:
- tiles, layers, geographic areas, etc. in which data is available, or
null.
-
getTransferSize
@UML(identifier="transferSize", obligation=OPTIONAL, specification=ISO_19115) default Double getTransferSize()
Estimated size of a unit in the specified transfer format, expressed in megabytes. The transfer size shall be greater than zero. Returnsnullif the transfer size is unknown.- Returns:
- estimated size of a unit in the specified transfer format in megabytes, or
null.
-
getOnLines
@Profile(level=CORE) @UML(identifier="onLine", obligation=OPTIONAL, specification=ISO_19115) default Collection<? extends OnlineResource> getOnLines()
Information about online sources from which the resource can be obtained.- Returns:
- online sources from which the resource can be obtained.
-
getOffLines
@UML(identifier="offLine", obligation=OPTIONAL, specification=ISO_19115) default Collection<? extends Medium> getOffLines()
Information about offline media on which the resource can be obtained.- Returns:
- offline media on which the resource can be obtained.
- Since:
- 3.1
-
getOffLine
@Deprecated Medium getOffLine()
Deprecated.As of ISO 19115:2014, replaced bygetOffLines().Information about offline media on which the resource can be obtained.- Returns:
- offline media on which the resource can be obtained, or
null.
-
getTransferFrequency
@UML(identifier="transferFrequency", obligation=OPTIONAL, specification=ISO_19115) default PeriodDuration getTransferFrequency()
Rate of occurrence of distribution.- Returns:
- rate of occurrence of distribution, or
nullif none. - Since:
- 3.1
-
getDistributionFormats
@UML(identifier="distributionFormat", obligation=OPTIONAL, specification=ISO_19115) default Collection<? extends Format> getDistributionFormats()
Formats of distribution.- Returns:
- formats of distribution.
- Since:
- 3.1
-
-