public class RowFilters extends Object
| Modifier and Type | Method and Description |
|---|---|
static <M,I> RowFilter<M,I> |
and(RowFilter<M,I> filter0,
RowFilter<M,I> filter1)
Combine the given filters, using an "and", if they are not
null. |
static <M,I> RowFilter<M,I> |
or(RowFilter<M,I> filter0,
RowFilter<M,I> filter1)
Combine the given filters, using an "or", if they are not
null. |
public static <M,I> RowFilter<M,I> and(RowFilter<M,I> filter0, RowFilter<M,I> filter1)
null. If they are both null, then
the resulting filter will accept all elements.M - The model typeI - The index typefilter0 - The first filterfilter1 - The second filterpublic static <M,I> RowFilter<M,I> or(RowFilter<M,I> filter0, RowFilter<M,I> filter1)
null. If they are both null, then
the resulting filter will accept no elements.M - The model typeI - The index typefilter0 - The first filterfilter1 - The second filterCopyright © 2022. All rights reserved.