Home | History | Annotate | Download | only in io

Lines Matching refs:wildcardMatch

1085      * wildcardMatch("c.txt", "*.txt")      --> true
1086 * wildcardMatch("c.txt", "*.jpg") --> false
1087 * wildcardMatch("a/b/c.txt", "a/b/*") --> true
1088 * wildcardMatch("c.txt", "*.???") --> true
1089 * wildcardMatch("c.txt", "*.????") --> false
1097 public static boolean wildcardMatch(String filename, String wildcardMatcher) {
1098 return wildcardMatch(filename, wildcardMatcher, IOCase.SENSITIVE);
1110 * wildcardMatch("c.txt", "*.txt") --> true
1111 * wildcardMatch("c.txt", "*.jpg") --> false
1112 * wildcardMatch("a/b/c.txt", "a/b/*") --> true
1113 * wildcardMatch("c.txt", "*.???") --> true
1114 * wildcardMatch("c.txt", "*.????") --> false
1123 return wildcardMatch(filename, wildcardMatcher, IOCase.SYSTEM);
1139 public static boolean wildcardMatch(String filename, String wildcardMatcher, IOCase caseSensitivity) {
1227 // used by wildcardMatch