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