Package eu.simuline.util
Class Finder.NegFilter
- java.lang.Object
-
- eu.simuline.util.Finder.Filter
-
- eu.simuline.util.Finder.NegFilter
-
- Enclosing class:
- Finder
static class Finder.NegFilter extends Finder.Filter
One of the logical operations of filters: Returns a filter which passes a file iff the original filtertbNegFilterdoes not.See
Finder.Filter.not().
-
-
Field Summary
Fields Modifier and Type Field Description private Finder.FiltertbNegFilterThe filter to be negated.
-
Constructor Summary
Constructors Constructor Description NegFilter(Finder.Filter tbNegFilter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanpass(java.io.File file)Passes the given file ifftbNegFilterdoes not.-
Methods inherited from class eu.simuline.util.Finder.Filter
and, not, or
-
-
-
-
Field Detail
-
tbNegFilter
private final Finder.Filter tbNegFilter
The filter to be negated.
-
-
Constructor Detail
-
NegFilter
NegFilter(Finder.Filter tbNegFilter)
-
-
Method Detail
-
pass
public boolean pass(java.io.File file)
Passes the given file ifftbNegFilterdoes not.- Specified by:
passin classFinder.Filter
-
-