| 
 | |||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectorg.apache.tools.ant.util.regexp.Jdk14RegexpMatcher
public class Jdk14RegexpMatcher
Implementation of RegexpMatcher for the built-in regexp matcher of JDK 1.4. UNIX_LINES option is enabled as a default.
| Field Summary | 
|---|
| Fields inherited from interface org.apache.tools.ant.util.regexp.RegexpMatcher | 
|---|
| MATCH_CASE_INSENSITIVE, MATCH_DEFAULT, MATCH_MULTILINE, MATCH_SINGLELINE | 
| Constructor Summary | |
|---|---|
| Jdk14RegexpMatcher()Constructor for JakartaOroRegexp | |
| Method Summary | |
|---|---|
| protected  java.util.regex.Pattern | getCompiledPattern(int options)Get a compiled representation of the regexp 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 using default options? | 
|  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 Jdk14RegexpMatcher()
| Method Detail | 
|---|
public void setPattern(java.lang.String pattern)
setPattern in interface RegexpMatcherpattern - the pattern to matchpublic java.lang.String getPattern()
getPattern in interface RegexpMatcherBuildException - on error
protected java.util.regex.Pattern getCompiledPattern(int options)
                                              throws BuildException
options - the options
BuildException - on error
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 | ||||||||