| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object | +--org.apache.tools.ant.util.regexp.JakartaRegexpMatcher
Implementation of RegexpMatcher for Jakarta-Regexp.
| Field Summary | 
| Fields inherited from interface org.apache.tools.ant.util.regexp.RegexpMatcher | 
| MATCH_CASE_INSENSITIVE, MATCH_DEFAULT, MATCH_MULTILINE, MATCH_SINGLELINE | 
| Constructor Summary | |
| JakartaRegexpMatcher() | |
| Method Summary | |
| protected  org.apache.regexp.RE | getCompiledPattern(int options)Compile the pattern. | 
| protected  int | getCompilerOptions(int options)Convert the generic options to the regex compiler specific options. | 
|  java.util.Vector | getGroups(java.lang.String argument)Returns a Vector of matched groups found in the argument using default options. | 
|  java.util.Vector | getGroups(java.lang.String input,
          int options)Returns a Vector of matched groups found in the argument. | 
|  java.lang.String | getPattern()Get a String representation of the regexp pattern | 
|  boolean | matches(java.lang.String argument)Does the given argument match the pattern? | 
|  boolean | matches(java.lang.String input,
        int options)Does the given argument match the pattern? | 
|  void | setPattern(java.lang.String pattern)Set the regexp pattern from the String description. | 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Constructor Detail | 
public JakartaRegexpMatcher()
| Method Detail | 
public void setPattern(java.lang.String pattern)
setPattern in interface RegexpMatcherpattern - the pattern to matchpublic java.lang.String getPattern()
getPattern in interface RegexpMatcher
protected org.apache.regexp.RE getCompiledPattern(int options)
                                           throws BuildException
options - the ant regexp options
BuildException - if an error occurs
public boolean matches(java.lang.String argument)
                throws BuildException
matches in interface RegexpMatcherargument - the string to match against
BuildException - on error
public boolean matches(java.lang.String input,
                       int options)
                throws BuildException
matches in interface RegexpMatcherinput - the string to match againstoptions - the regex options to use
BuildException - on error
public java.util.Vector getGroups(java.lang.String argument)
                           throws BuildException
Group 0 will be the full match, the rest are the parenthesized subexpressions
.
getGroups in interface RegexpMatcherargument - the string to match against
BuildException - on error
public java.util.Vector getGroups(java.lang.String input,
                                  int options)
                           throws BuildException
Group 0 will be the full match, the rest are the parenthesized subexpressions
.
getGroups in interface RegexpMatcherinput - the string to match againstoptions - the regex options to use
BuildException - on errorprotected int getCompilerOptions(int options)
options - the generic options
| 
 | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||