Package org.nuxeo.common.utils
Interface PathFilter
-
- All Known Implementing Classes:
AbstractFilter
,ExcludeFilter
,IncludeFilter
,PathFilterSet
public interface PathFilter
A path filter. Two types of wildcards are supported:*
- match any char from a path segment**
- match any path segment
- Author:
- Bogdan Stefanescu
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
accept(Path path)
boolean
isExclusive()
-
-
-
Method Detail
-
accept
boolean accept(Path path)
-
isExclusive
boolean isExclusive()
-
-