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

/ropes-1.1.3/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.java233 public Matcher matcher(final Pattern pattern) { method in class:AbstractRope
234 return pattern.matcher(this.getForSequentialAccess());
239 return regex.matcher(this.getForSequentialAccess()).matches();
/ropes-1.1.3/src/org/ahmadsoft/ropes/
H A DRope.java210 * Creates a matcher that will match this rope against the
212 * matcher than:
214 * Matcher m = pattern.matcher(this);
218 * @return a matcher.
220 Matcher matcher(Pattern pattern); method in interface:Rope

Completed in 2 milliseconds