Searched defs:wildcard (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Email/src/org/apache/commons/io/filefilter/
H A DWildcardFileFilter.java32 * The wildcard matcher uses the characters '?' and '*' to represent a
33 * single or multiple wildcard characters.
60 * Construct a new case-sensitive wildcard filter for a single wildcard.
62 * @param wildcard the wildcard to match
65 public WildcardFileFilter(String wildcard) { argument
66 this(wildcard, null);
70 * Construct a new wildcard filter for a single wildcard specifyin
76 WildcardFileFilter(String wildcard, IOCase caseSensitivity) argument
[all...]
H A DWildcardFilter.java31 * The wildcard matcher uses the characters '?' and '*' to represent a
32 * single or multiple wildcard characters.
59 * Construct a new case-sensitive wildcard filter for a single wildcard.
61 * @param wildcard the wildcard to match
64 public WildcardFilter(String wildcard) { argument
65 if (wildcard == null) {
66 throw new IllegalArgumentException("The wildcard must not be null");
68 this.wildcards = new String[] { wildcard };
[all...]

Completed in 45 milliseconds