Constructor | Description |
---|---|
DoubleIndex(DoubleColumn column) |
Constructs an index for the given column
|
Modifier and Type | Method | Description |
---|---|---|
Selection |
atLeast(double value) |
Returns a
Selection of all values at least as large as the given value |
Selection |
atMost(double value) |
Returns a
Selection of all values at most as large as the given value |
Selection |
get(double value) |
Returns a bitmap containing row numbers of all cells matching the given int
|
Selection |
greaterThan(double value) |
Returns a
Selection of all values greater than the given value |
Selection |
lessThan(double value) |
Returns a
Selection of all values less than the given value |
public DoubleIndex(DoubleColumn column)
public Selection get(double value)
value
- This is a 'key' from the index perspective, meaning it is a value from the
standpoint of the columnpublic Selection atLeast(double value)
Selection
of all values at least as large as the given valuepublic Selection greaterThan(double value)
Selection
of all values greater than the given valuepublic Selection atMost(double value)
Selection
of all values at most as large as the given valueCopyright © 2022. All rights reserved.