Package org.uberfire.io.regex
Class AntPathMatcher
- java.lang.Object
-
- org.uberfire.io.regex.AntPathMatcher
-
public final class AntPathMatcher extends Object
-
-
Constructor Summary
Constructors Constructor Description AntPathMatcher()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanexcludes(Collection<String> patterns, URI uri)static booleanexcludes(Collection<String> patterns, org.uberfire.java.nio.file.Path path)static booleanfilter(Collection<String> includes, Collection<String> excludes, URI uri)static booleanfilter(Collection<String> includes, Collection<String> excludes, org.uberfire.java.nio.file.Path path)static booleanincludes(Collection<String> patterns, URI uri)static booleanincludes(Collection<String> patterns, org.uberfire.java.nio.file.Path path)
-
-
-
Method Detail
-
filter
public static boolean filter(Collection<String> includes, Collection<String> excludes, org.uberfire.java.nio.file.Path path)
-
filter
public static boolean filter(Collection<String> includes, Collection<String> excludes, URI uri)
-
includes
public static boolean includes(Collection<String> patterns, org.uberfire.java.nio.file.Path path)
-
includes
public static boolean includes(Collection<String> patterns, URI uri)
-
excludes
public static boolean excludes(Collection<String> patterns, URI uri)
-
excludes
public static boolean excludes(Collection<String> patterns, org.uberfire.java.nio.file.Path path)
-
-