Interface BinarySearchableAccessor
- All Superinterfaces:
ColumnAccessor
- All Known Implementing Classes:
NullColumn.Accessor
The implementations of this interface will not validate that things are sorted for the binary search, it assumes that
they must be. As such, behavior are undefined if the column is not actually sorted.
-
Method Summary
Modifier and TypeMethodDescriptionfindComplex(int startIndex, int endIndex, Object val) findDouble(int startIndex, int endIndex, double val) findFloat(int startIndex, int endIndex, float val) findLong(int startIndex, int endIndex, long val) findNull(int startIndex, int endIndex) findString(int startIndex, int endIndex, String val) static BinarySearchableAccessorfromColumn(Column col) Methods inherited from interface org.apache.druid.query.rowsandcols.column.ColumnAccessor
compareRows, getDouble, getFloat, getInt, getLong, getObject, getType, isNull, numRows
-
Method Details
-
fromColumn
-
findNull
-
findDouble
-
findFloat
-
findLong
-
findString
-
findComplex
-