java.lang.Object
com.ibm.jvm.dtfjview.tools.utils.RegExprMatchHandle
- All Implemented Interfaces:
- IMatchHandle
This class handles the matching tasks when regular expressions are used.
 Note, the regular expression is defined by Javadoc of class java.util.regex.Pattern.
 Also, it always enables the dotall mode (java.util.regex.Pattern.DOTALL).
 
- 
Constructor SummaryConstructorsConstructorDescriptionRegExprMatchHandle(String[] regExList) RegExprMatchHandle(String[] regExList, boolean ignoreCase) RegExprMatchHandle(String[] regExList, boolean ignoreCase, boolean negated) 
- 
Method Summary
- 
Constructor Details- 
RegExprMatchHandle
- 
RegExprMatchHandle
- 
RegExprMatchHandle
 
- 
- 
Method Details- 
matchesDescription copied from interface:IMatchHandleTo check if the string is matched.- Specified by:
- matchesin interface- IMatchHandle
- Parameters:
- s- The string to be checked.
- Returns:
- trueif the string is matched;- falseotherwise.
 
- 
processDescription copied from interface:IMatchHandleTo process the string.- Specified by:
- processin interface- IMatchHandle
- Parameters:
- s- The string to be processed.
- Returns:
- The processed string.
 
 
-