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 Type
    Method
    Description
    void
    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

      void accept(PackingSchemeVisitor visitor)
      Accepts a visitor in this scheme.
      Parameters:
      visitor - the visitor to accept.