Package org.apache.tools.ant.util.regexp
Class JakartaOroMatcher
java.lang.Object
org.apache.tools.ant.util.regexp.JakartaOroMatcher
- All Implemented Interfaces:
RegexpMatcher
- Direct Known Subclasses:
JakartaOroRegexp
public class JakartaOroMatcher extends java.lang.Object implements RegexpMatcher
Implementation of RegexpMatcher for Jakarta-ORO.
-
Field Summary
Fields Modifier and Type Field Description protected org.apache.oro.text.regex.Perl5Compiler
compiler
protected org.apache.oro.text.regex.Perl5Matcher
matcher
Fields inherited from interface org.apache.tools.ant.util.regexp.RegexpMatcher
MATCH_CASE_INSENSITIVE, MATCH_DEFAULT, MATCH_MULTILINE, MATCH_SINGLELINE
-
Constructor Summary
Constructors Constructor Description JakartaOroMatcher()
-
Method Summary
Modifier and Type Method Description protected org.apache.oro.text.regex.Pattern
getCompiledPattern(int options)
Get a compiled representation of the regexp patternprotected int
getCompilerOptions(int options)
Convert the generic options to the regex compiler specific options.java.util.Vector<java.lang.String>
getGroups(java.lang.String argument)
Returns a Vector of matched groups found in the argument using default options.java.util.Vector<java.lang.String>
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 patternboolean
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.
-
Field Details
-
Constructor Details
-
JakartaOroMatcher
public JakartaOroMatcher()
-
-
Method Details
-
setPattern
public void setPattern(java.lang.String pattern)Set the regexp pattern from the String description.- Specified by:
setPattern
in interfaceRegexpMatcher
- Parameters:
pattern
- the pattern to match
-
getPattern
public java.lang.String getPattern()Get a String representation of the regexp pattern- Specified by:
getPattern
in interfaceRegexpMatcher
- Returns:
- the pattern
-
getCompiledPattern
Get a compiled representation of the regexp pattern- Parameters:
options
- the options- Returns:
- the compiled pattern
- Throws:
BuildException
- on error
-
matches
Does the given argument match the pattern using default options?- Specified by:
matches
in interfaceRegexpMatcher
- Parameters:
argument
- the string to match against- Returns:
- true if the pattern matches
- Throws:
BuildException
- on error
-
matches
Does the given argument match the pattern?- Specified by:
matches
in interfaceRegexpMatcher
- Parameters:
input
- the string to match againstoptions
- the regex options to use- Returns:
- true if the pattern matches
- Throws:
BuildException
- on error
-
getGroups
public java.util.Vector<java.lang.String> getGroups(java.lang.String argument) throws BuildExceptionReturns a Vector of matched groups found in the argument using default options.Group 0 will be the full match, the rest are the parenthesized subexpressions
.- Specified by:
getGroups
in interfaceRegexpMatcher
- Parameters:
argument
- the string to match against- Returns:
- the vector of groups
- Throws:
BuildException
- on error
-
getGroups
public java.util.Vector<java.lang.String> getGroups(java.lang.String input, int options) throws BuildExceptionReturns a Vector of matched groups found in the argument.Group 0 will be the full match, the rest are the parenthesized subexpressions
.- Specified by:
getGroups
in interfaceRegexpMatcher
- Parameters:
input
- the string to match againstoptions
- the regex options to use- Returns:
- the vector of groups
- Throws:
BuildException
- on error
-
getCompilerOptions
protected int getCompilerOptions(int options)Convert the generic options to the regex compiler specific options.- Parameters:
options
- the generic options- Returns:
- the specific options
-