Searched defs:matcher (Results 1 - 4 of 4) sorted by relevance

/ropes-1.2.5/src/org/ahmadsoft/ropes/impl/
H A DFlatCharSequenceRope.java88 public Matcher matcher(final Pattern pattern) { method in class:FlatCharSequenceRope
89 // optimized to return a matcher directly on the underlying sequence.
90 return pattern.matcher(this.sequence);
H A DAbstractRope.java263 public Matcher matcher(final Pattern pattern) { method in class:AbstractRope
264 return pattern.matcher(this.getForSequentialAccess());
269 return regex.matcher(this.getForSequentialAccess()).matches();
/ropes-1.2.5/src/org/ahmadsoft/ropes/
H A DRope.java227 * Creates a matcher that will match this rope against the
229 * matcher than:
231 * Matcher m = pattern.matcher(this);
235 * @return a matcher.
238 Matcher matcher(Pattern pattern); method in interface:Rope
/ropes-1.2.5/
H A Dropes.jar ... Rope trimStart () public abstract java.util.regex.Matcher matcher (java.util.regex.Pattern) public abstract ...

Completed in 12 milliseconds