net.coderazzi.filters
Class NotFilter
java.lang.Object
net.coderazzi.filters.artifacts.RowFilter
net.coderazzi.filters.Filter
net.coderazzi.filters.ComposedFilter
net.coderazzi.filters.AndFilter
net.coderazzi.filters.NotFilter
- All Implemented Interfaces:
- IFilter, IFilterObserver
public class NotFilter
- extends AndFilter
Composed set of filters, added via logical AND, and then NOT-ed the result.
- Author:
- Luis M Pena - lu@coderazzi.net
Method Summary |
boolean |
include(RowFilter.Entry rowEntry)
Specifies whether the specified entry should be shown or hidden. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
NotFilter
public NotFilter()
- Default constructor.
NotFilter
public NotFilter(IFilter... observables)
- Constructor built up out of one or more
IFilter
instances.
include
public boolean include(RowFilter.Entry rowEntry)
- Description copied from class:
RowFilter
- Specifies whether the specified entry should be shown or hidden.
- Specified by:
include
in interface IFilter
- Overrides:
include
in class AndFilter
- Returns:
- true to show the entry
- See Also:
IFilter.include(RowFilter.Entry)