Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
com.memoire.re.REMatch

Uses of REMatch in com.memoire.re
 

Fields in com.memoire.re declared as REMatch
private  REMatch REMatchEnumeration.m_match
           
 

Methods in com.memoire.re that return REMatch
 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.
private  REMatch[] RE.getAllMatchesImpl(RECharIndexed input, int index, int eflags)
           
 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(RECharIndexed input, int index, int eflags, java.lang.StringBuffer buffer)
           
 REMatch REMatchEnumeration.nextMatch()
          Returns the next match in the input text.
 

Methods in com.memoire.re with parameters of type REMatch
(package private)  int[] RETokenPOSIX.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RE.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenStart.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenEnd.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenRange.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenAny.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private) abstract  int[] REToken.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
protected  int[] REToken.next(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenOneOf.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenChar.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenBackRef.match(RECharIndexed input, int index, int eflags, REMatch mymatch)
           
(package private)  int[] RETokenRepeated.match(RECharIndexed input, int index, int eflags, REMatch mymatch)