public interface PackingScheme
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.Modifier and Type | Method and Description |
---|---|
void |
accept(PackingSchemeVisitor visitor)
Accepts a visitor in this scheme.
|
DataChunk.DataType |
getUnpackedType()
Gets the unpacked data type that values in this packing scheme will
be unpacked to.
|
DataChunk.DataType getUnpackedType()
void accept(PackingSchemeVisitor visitor)
visitor
- the visitor to accept.