Uses of Class
gnu.regexp.REMatch

Uses of REMatch in gnu.regexp
 

Fields in gnu.regexp declared as REMatch
(package private)  REMatch REMatch.next
           
 

Methods in gnu.regexp that return REMatch
 REMatch REMatchEnumeration.nextMatch()
          Returns the next match in the input text.
 REMatch[] RE.getAllMatches(java.lang.Object input)
          Returns an array of all matches found in the input.
 REMatch[] RE.getAllMatches(java.lang.Object input, int index)
          Returns an array of all matches found in the input, beginning at the specified index position.
 REMatch[] RE.getAllMatches(java.lang.Object input, int index, int eflags)
          Returns an array of all matches found in the input string, beginning at the specified index position and using the specified execution flags.
 REMatch RE.getMatch(java.lang.Object input)
          Returns the first match found in the input.
 REMatch RE.getMatch(java.lang.Object input, int index)
          Returns the first match found in the input, beginning the search at the specified index.
 REMatch RE.getMatch(java.lang.Object input, int index, int eflags)
          Returns the first match found in the input, beginning the search at the specified index, and using the specified execution flags.
 REMatch RE.getMatch(java.lang.Object input, int index, int eflags, java.lang.StringBuffer buffer)
          Returns the first match found in the input, beginning the search at the specified index, and using the specified execution flags.
(package private)  REMatch RE.getMatchImpl(CharIndexed input, int anchor, int eflags, java.lang.StringBuffer buffer)
           
 

Methods in gnu.regexp with parameters of type REMatch
(package private)  boolean RETokenWordBoundary.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenStart.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenRepeated.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenRange.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenPOSIX.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenOneOf.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenLookAhead.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenEndSub.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenEnd.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenChar.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenBackRef.match(CharIndexed input, REMatch mymatch)
           
(package private)  boolean RETokenAny.match(CharIndexed input, REMatch mymatch)
           
(package private) abstract  boolean REToken.match(CharIndexed input, REMatch mymatch)
          Returns true if the match succeeded, false if it failed.
protected  boolean REToken.next(CharIndexed input, REMatch mymatch)
          Returns true if the rest of the tokens match, false if they fail.
(package private)  void REMatch.assignFrom(REMatch other)
           
(package private)  boolean RE.match(CharIndexed input, REMatch mymatch)
           
 



Copyright © 1998,1999 Wes Biggs. All Rights reserved.