OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pattern
(Results
26 - 50
of
241
) sorted by null
1
2
3
4
5
6
7
8
9
10
/packages/apps/Email/src/org/apache/commons/io/filefilter/
RegexFileFilter.java
21
import java.util.regex.
Pattern
;
28
* See java.util.regex.
Pattern
for regex matching rules
48
/** The regular expression
pattern
that will be used to match filenames */
49
private final
Pattern
pattern
;
field in class:RegexFileFilter
54
* @param
pattern
regular string expression to match
55
* @throws IllegalArgumentException if the
pattern
is null
57
public RegexFileFilter(String
pattern
) {
58
if (
pattern
== null) {
59
throw new IllegalArgumentException("
Pattern
is missing");
[
all
...]