Java javax.swing RowFilter fields, constructors, methods, implement or subclass

Example usage for Java javax.swing RowFilter fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.swing RowFilter.

The text is from its open source code.

Subclass

javax.swing.RowFilter has subclasses.
Click this link to see all its subclasses.

Constructor

Method

RowFilterandFilter(Iterable> filters)
Returns a RowFilter that includes entries if all of the supplied filters include the entry.
booleaninclude(Entry entry)
Returns true if the specified entry should be shown; returns false if the entry should be hidden.
RowFilterorFilter(Iterable> filters)
Returns a RowFilter that includes entries if any of the supplied filters includes the entry.
RowFilterregexFilter(String regex, int... indices)
Returns a RowFilter that uses a regular expression to determine which entries to include.