Class SingleSidedComparableRangeFilter
java.lang.Object
io.deephaven.engine.table.impl.select.WhereFilterImpl
io.deephaven.engine.table.impl.select.AbstractRangeFilter
io.deephaven.engine.table.impl.select.SingleSidedComparableRangeFilter
- All Implemented Interfaces:
Expression
,Filter
,WhereFilter
,Serializable
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.api.filter.Filter
Filter.Visitor<T>
Nested classes/interfaces inherited from interface io.deephaven.engine.table.impl.select.WhereFilter
WhereFilter.PreviousFilteringNotSupported, WhereFilter.RecomputeListener
-
Field Summary
Fields inherited from class io.deephaven.engine.table.impl.select.AbstractRangeFilter
columnName, lowerInclusive, upperInclusive
Fields inherited from interface io.deephaven.engine.table.impl.select.WhereFilter
ZERO_LENGTH_WHERE_FILTER_ARRAY
-
Method Summary
Modifier and TypeMethodDescriptioncopy()
Create a copy of this WhereFilter.void
init
(@NotNull TableDefinition tableDefinition) Initialize this filter given the table definition.static ChunkFilter
makeComparableChunkFilter
(Comparable<?> pivot, boolean inclusive, boolean isGreaterThan) makeForTest
(String columnName, Comparable<?> value, boolean inclusive, boolean isGreaterThan) toString()
Methods inherited from class io.deephaven.engine.table.impl.select.AbstractRangeFilter
filter, getColumnArrays, getColumns, isSimpleFilter, makeBigDecimalRange, setRecomputeListener
Methods inherited from class io.deephaven.engine.table.impl.select.WhereFilterImpl
isAutomatedFilter, setAutomatedFilter
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.deephaven.engine.table.impl.select.WhereFilter
beginOperation, canMemoize, filter, filterInverse, hasVirtualRowVariables, init, invert, isRefreshing, permitParallelization, validateSafeForRefresh, walk, walk
-
Method Details
-
makeForTest
@TestUseOnly public static SingleSidedComparableRangeFilter makeForTest(String columnName, Comparable<?> value, boolean inclusive, boolean isGreaterThan) -
init
Description copied from interface:WhereFilter
Initialize this filter given the table definition. If this filter has already been initialized, this should be a no-op, or optionally validate that the table definition is compatible with previous initialization.- Parameters:
tableDefinition
- the definition of the table that will be filtered
-
makeComparableChunkFilter
public static ChunkFilter makeComparableChunkFilter(Comparable<?> pivot, boolean inclusive, boolean isGreaterThan) -
copy
Description copied from interface:WhereFilter
Create a copy of this WhereFilter.- Returns:
- an independent copy of this WhereFilter.
-
toString
-