public interface Finder
| Modifier and Type | Method and Description |
|---|---|
java.util.List<java.lang.String> |
find(java.lang.String endStr)
Find all files within a package that end with the specified string.
|
java.util.List<java.lang.String> |
findExcluding(java.lang.String[] excluding,
java.lang.String endStr)
Find all files within a package that end with the specified string
and don't begin with the exluding string
|
java.util.List<java.lang.String> find(java.lang.String endStr)
endStr - The string to match the files against.java.util.List<java.lang.String> findExcluding(java.lang.String[] excluding,
java.lang.String endStr)
excluding - The string to match the files against.endStr - The string to match the files against.