Package bm.util
Interface PathPredicates
- All Known Implementing Classes:
SameFiles
public interface PathPredicates
-
Method Summary
Modifier and TypeMethodDescriptionCreates a predicate to test ifPath.toString()contains the string.containsRe(String includeRe) Creates a predicate to test ifPath.toString()contains the regular expression.Creates a predicate to test ifPath.toString()ends with the string.Creates a predicate to test ifPath.toString()matches the regular expression.startsWith(String text) Creates a predicate to test ifPath.toString()starts with the string.
-
Method Details
-
includeDir
-
includeFile
-
matches
Creates a predicate to test ifPath.toString()matches the regular expression. -
containsRe
Creates a predicate to test ifPath.toString()contains the regular expression. -
contains
Creates a predicate to test ifPath.toString()contains the string. -
startsWith
Creates a predicate to test ifPath.toString()starts with the string. -
endsWith
Creates a predicate to test ifPath.toString()ends with the string.
-