Package noaa.coastwatch.util.chunk
Interface PackingScheme
- All Known Implementing Classes:
DoublePackingScheme,FloatPackingScheme
public interface PackingScheme
The
PackingScheme interface is implemented by concrete classes that
have a strategy to pack floating point data to integer data and unpack integer
data to floating point data.- Since:
- 3.4.0
- Author:
- Peter Hollemans
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(PackingSchemeVisitor visitor) Accepts a visitor in this scheme.Gets the unpacked data type that values in this packing scheme will be unpacked to.
-
Method Details
-
getUnpackedType
DataChunk.DataType getUnpackedType()Gets the unpacked data type that values in this packing scheme will be unpacked to. -
accept
Accepts a visitor in this scheme.- Parameters:
visitor- the visitor to accept.
-