Protected
constructora condition representing the current condition logically ANDed with the other parameters
Rest
...filters: FilterCondition[]FilterCondition
the opposite of this condition
FilterCondition
a condition representing the current condition logically ORed with the other parameters
Rest
...filters: FilterCondition[]FilterCondition.
Static
invokea filter condition invoking a static function with the given parameters. Currently supported Deephaven static functions:
Note that the array can only be specified as a column reference at this time - typically the `FilterValue.in` method should be used in other cases
Rest
...args: FilterValue[]dh.FilterCondition
Static
searcha filter condition which will check if the given value can be found in any supported column on whatever table
this FilterCondition is passed to. This FilterCondition is somewhat unique in that it need not be given a column
instance, but will adapt to any table. On numeric columns, with a value passed in which can be parsed as a
number, the column will be filtered to numbers which equal, or can be "rounded" effectively to this number. On
String columns, the given value will match any column which contains this string in a case-insensitive search. An
optional second argument can be passed, an array of FilterValue
from the columns to limit this search to (see
dh.Column.filter).
Optional
columns: FilterValue[]dh.FilterCondition
Describes a filter which can be applied to a table. Replacing these instances may be more expensive than reusing them. These instances are immutable - all operations that compose them to build bigger expressions return a new instance.