Uses of Class
com.mckoi.database.SelectableRange
-
Packages that use SelectableRange Package Description com.mckoi.database The core database classes for Mckoi. -
-
Uses of SelectableRange in com.mckoi.database
Fields in com.mckoi.database declared as SelectableRange Modifier and Type Field Description static SelectableRange
SelectableRange. FULL_RANGE
The range that represents the entire range (including null).static SelectableRange
SelectableRange. FULL_RANGE_NO_NULLS
The range that represents the entire range (not including null).Methods in com.mckoi.database that return SelectableRange Modifier and Type Method Description SelectableRange[]
SelectableRangeSet. toSelectableRangeArray()
Returns the range as an array of SelectableRange or an empty array if there is no range.Methods in com.mckoi.database with parameters of type SelectableRange Modifier and Type Method Description Table
Table. rangeSelect(Variable col_var, SelectableRange[] ranges)
A single column range select on this table.IntegerVector
BlindSearch. selectRange(SelectableRange range)
IntegerVector
BlindSearch. selectRange(SelectableRange[] ranges)
IntegerVector
CollatedBaseSearch. selectRange(SelectableRange range)
IntegerVector
CollatedBaseSearch. selectRange(SelectableRange[] ranges)
IntegerVector
Table. selectRange(int column, SelectableRange[] ranges)
Returns an array that represents the sorted order of this table of all values in the given SelectableRange objects of the given column index.
-