OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:separatorpattern
(Results
1 - 1
of
1
) sorted by null
/external/guava/guava/src/com/google/common/base/
Splitter.java
203
* @param
separatorPattern
the pattern that determines whether a subsequence
206
* @throws IllegalArgumentException if {@code
separatorPattern
} matches the
210
public static Splitter on(final Pattern
separatorPattern
) {
211
checkNotNull(
separatorPattern
);
212
checkArgument(!
separatorPattern
.matcher("").matches(),
213
"The pattern may not match the empty string: %s",
separatorPattern
);
218
final Matcher matcher =
separatorPattern
.matcher(toSplit);
239
* @param
separatorPattern
the pattern that determines whether a subsequence
242
* @throws java.util.regex.PatternSyntaxException if {@code
separatorPattern
}
244
* @throws IllegalArgumentException if {@code
separatorPattern
} matches th
[
all
...]
Completed in 192 milliseconds