Package org.jdesktop.swingx.sort
Class RowFilters.GeneralFilter
- java.lang.Object
-
- javax.swing.RowFilter<Object,Object>
-
- org.jdesktop.swingx.sort.RowFilters.GeneralFilter
-
- Enclosing class:
- RowFilters
public abstract static class RowFilters.GeneralFilter extends RowFilter<Object,Object>
C&P from core Swing to allow subclassing.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class javax.swing.RowFilter
RowFilter.ComparisonType, RowFilter.Entry<M extends Object,I extends Object>
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
GeneralFilter(int... columns)
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description protected void
checkIndices(int[] columns)
Throws an IllegalArgumentException if any of the values in columns are < 0.boolean
include(RowFilter.Entry<? extends Object,? extends Object> value)
protected abstract boolean
include(RowFilter.Entry<? extends Object,? extends Object> value, int index)
-
Methods inherited from class javax.swing.RowFilter
andFilter, dateFilter, notFilter, numberFilter, orFilter, regexFilter
-
-
-
-
Method Detail
-
include
public boolean include(RowFilter.Entry<? extends Object,? extends Object> value)
-
include
protected abstract boolean include(RowFilter.Entry<? extends Object,? extends Object> value, int index)
-
checkIndices
protected void checkIndices(int[] columns)
Throws an IllegalArgumentException if any of the values in columns are < 0.
-
-