Interface Dictionary
-
@Internal public interface DictionaryThe interface for dictionary in AbstractColumnVector to decode dictionary encoded values.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]decodeToBinary(int id)doubledecodeToDouble(int id)floatdecodeToFloat(int id)intdecodeToInt(int id)longdecodeToLong(int id)TimestampDatadecodeToTimestamp(int id)
-
-
-
Method Detail
-
decodeToInt
int decodeToInt(int id)
-
decodeToLong
long decodeToLong(int id)
-
decodeToFloat
float decodeToFloat(int id)
-
decodeToDouble
double decodeToDouble(int id)
-
decodeToBinary
byte[] decodeToBinary(int id)
-
decodeToTimestamp
TimestampData decodeToTimestamp(int id)
-
-