Uses of Class
jregex.Matcher

Packages that use Matcher
jregex   
org.jruby   
 

Uses of Matcher in jregex
 

Methods in jregex that return Matcher
 Matcher Pattern.matcher()
          Returns a targetless matcher.
 Matcher Pattern.matcher(java.lang.String s)
          Returns a matcher for a specified string.
 Matcher Pattern.matcher(char[] data, int start, int end)
          Returns a matcher for a specified region.
 Matcher Pattern.matcher(MatchResult res, int groupId)
          Returns a matcher for a match result (in a performance-friendly way).
 Matcher Pattern.matcher(MatchResult res, java.lang.String groupName)
          Just as above, yet with symbolic group name.
 Matcher Pattern.matcher(java.io.Reader text, int length)
          Returns a matcher taking a text stream as target.
 

Methods in jregex with parameters of type Matcher
 void Matcher.setTarget(Matcher m, int groupId)
          This method allows to efficiently pass data between matchers.
static int Replacer.replace(Matcher m, Substitution substitution, TextBuffer dest)
          Replaces all occurences of a matcher's pattern in a matcher's target by a given substitution appending the result to a buffer.
The substitution starts from current matcher's position, current match not included.
static int Replacer.replace(Matcher m, Substitution substitution, java.io.Writer out)
           
 

Constructors in jregex with parameters of type Matcher
RETokenizer(Matcher m, boolean emptyEnabled)
           
 

Uses of Matcher in org.jruby
 

Fields in org.jruby declared as Matcher
protected  Matcher RubyMatchData.matcher
           
 

Constructors in org.jruby with parameters of type Matcher
RubyMatchData(Ruby runtime, Matcher matcher)
           
RubyMatchData.JavaString(Ruby runtime, java.lang.String original, Matcher matcher)
           
RubyMatchData.RString(Ruby runtime, RubyString original, Matcher matcher)
           
 



Copyright © 2002-2007 JRuby Team. All Rights Reserved.