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