Example usage for Java javax.swing RowFilter fields, constructors, methods, implement or subclass
The text is from its open source code.
RowFilter | andFilter(Iterable extends RowFilter super M, ? super I>> filters) Returns a RowFilter that includes entries if all of the supplied filters include the entry. |
boolean | include(Entry extends M, ? extends I> entry) Returns true if the specified entry should be shown; returns false if the entry should be hidden. |
RowFilter | orFilter(Iterable extends RowFilter super M, ? super I>> filters) Returns a RowFilter that includes entries if any of the supplied filters includes the entry. |
RowFilter | regexFilter(String regex, int... indices) Returns a RowFilter that uses a regular expression to determine which entries to include. |