org.apache.tools.ant.util.regexp
Class Jdk14RegexpMatcher
java.lang.Object
org.apache.tools.ant.util.regexp.Jdk14RegexpMatcher
- RegexpMatcher
public class Jdk14RegexpMatcher
extends java.lang.Object
Implementation of RegexpMatcher for the built-in regexp matcher of
JDK 1.4. UNIX_LINES option is enabled as a default.
protected Pattern | getCompiledPattern(int options)
|
protected int | getCompilerOptions(int options)
|
Vector | getGroups(String argument) - Returns a Vector of matched groups found in the argument.
|
Vector | getGroups(String input, int options) - Returns a Vector of matched groups found in the argument.
|
String | getPattern() - Get a String representation of the regexp pattern
|
boolean | matches(String argument) - Does the given argument match the pattern?
|
boolean | matches(String input, int options) - Does the given argument match the pattern?
|
void | setPattern(String pattern) - Set the regexp pattern from the String description.
|
Jdk14RegexpMatcher
public Jdk14RegexpMatcher()
getCompiledPattern
protected Pattern getCompiledPattern(int options)
throws BuildException
getCompilerOptions
protected int getCompilerOptions(int options)
getGroups
public Vector getGroups(String argument)
throws BuildException
Returns a Vector of matched groups found in the argument.
Group 0 will be the full match, the rest are the
parenthesized subexpressions.
- getGroups in interface RegexpMatcher
getGroups
public Vector getGroups(String input,
int options)
throws BuildException
Returns a Vector of matched groups found in the argument.
Group 0 will be the full match, the rest are the
parenthesized subexpressions.
- getGroups in interface RegexpMatcher
getPattern
public String getPattern()
Get a String representation of the regexp pattern
- getPattern in interface RegexpMatcher
setPattern
public void setPattern(String pattern)
Set the regexp pattern from the String description.
- setPattern in interface RegexpMatcher
Copyright B) 2000-2005 Apache Software Foundation. All Rights Reserved.