Package io.trino.parquet.dictionary
Interface Dictionary
- All Known Implementing Classes:
BinaryDictionary,DoubleDictionary,FloatDictionary,IntegerDictionary,LongDictionary
public interface Dictionary
-
Method Summary
Modifier and TypeMethodDescriptiondefault doubledecodeToDouble(int id) default floatdecodeToFloat(int id) default intdecodeToInt(int id) default longdecodeToLong(int id) default io.airlift.slice.SlicedecodeToSlice(int id)
-
Method Details
-
decodeToSlice
default io.airlift.slice.Slice decodeToSlice(int id) -
decodeToInt
default int decodeToInt(int id) -
decodeToLong
default long decodeToLong(int id) -
decodeToFloat
default float decodeToFloat(int id) -
decodeToDouble
default double decodeToDouble(int id)
-