| Package | Description |
|---|---|
| com.healthmarketscience.jackcess.util |
| Modifier and Type | Method and Description |
|---|---|
static RowFilter |
RowFilter.invert(RowFilter filter)
Creates a filter which inverts the sense of the given filter (rows which
are matched by the given filter will not be matched by the returned
filter, and vice versa).
|
static RowFilter |
RowFilter.matchPattern(Column columnPattern,
java.lang.Object valuePattern)
Creates a filter based on a single value row pattern.
|
static RowFilter |
RowFilter.matchPattern(java.util.Map<java.lang.String,?> rowPattern)
Creates a filter based on a row pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static java.lang.Iterable<Row> |
RowFilter.apply(RowFilter rowFilter,
java.lang.Iterable<? extends Row> iterable)
Returns an iterable which filters the given iterable based on the given
rowFilter.
|
static RowFilter |
RowFilter.invert(RowFilter filter)
Creates a filter which inverts the sense of the given filter (rows which
are matched by the given filter will not be matched by the returned
filter, and vice versa).
|