|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--uk.org.ogsadai.activity.files.regexp.AbstractMatcher | +--uk.org.ogsadai.activity.files.regexp.JavaMatcher
This class implements a matcher class designed around the Java 1.4
regular expression support. It wraps the
java.util.regex.Matcher
class to present an interface
consistent with AbstractMatcher
.
An instance of this class is typically obtained using the
matcher()
method on an instance of the
JavaPattern
class.
JavaPattern.matcher()
Field Summary | |
private static java.lang.String |
COPYRIGHT_NOTICE
Copyright statement |
private java.lang.String |
mInput
The string which we will be searching for matches within. |
private java.util.regex.Matcher |
mMatcher
The underlying java.util.regex.Matcher object. |
private java.util.regex.Pattern |
mPattern
The regular expression which this matcher matches. |
Fields inherited from class uk.org.ogsadai.activity.files.regexp.AbstractMatcher |
mSearchOffset |
Constructor Summary | |
JavaMatcher(java.util.regex.Pattern pattern)
Construct a new matcher object intended to find matches of the given regular expression. |
Method Summary | |
int |
endOffset()
Return the offset of the end of the most recent match of the regular expression found in the input text. |
boolean |
findNextMatch()
Search the input string for the next occurrence of a match of the regular expression. |
java.lang.String |
group(int index)
Returns the input subsequence captured by the given group during the previous match operation. |
int |
groupCount()
Returns the number of capturing groups in this matcher's regular expression. |
void |
setInput(java.lang.String input)
Register a string of text as the text over which this matcher object searches for occurrences of its regular expression. |
int |
startOffset()
Return the offset of the start of the most recent match of the regular expression found in the input text. |
Methods inherited from class uk.org.ogsadai.activity.files.regexp.AbstractMatcher |
getSearchOffset, groups, setSearchOffset |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
private static final java.lang.String COPYRIGHT_NOTICE
private java.util.regex.Pattern mPattern
private java.util.regex.Matcher mMatcher
java.util.regex.Matcher
object.
private java.lang.String mInput
Constructor Detail |
public JavaMatcher(java.util.regex.Pattern pattern)
pattern
- the regular expression to find matches ofMethod Detail |
public void setInput(java.lang.String input)
AbstractMatcher
findNextMatch()
method.
setInput
in class AbstractMatcher
input
- The string of text to search withinpublic boolean findNextMatch() throws java.lang.IllegalStateException
AbstractMatcher
true
and causes the details regarding the
match to be stored locally. These details include the offset in
the entire input string of the start and the end positions of
the match; and the actual text which matched the parenthesised
groups in the regular expression this matcher matches.
findNextMatch
in class AbstractMatcher
true
if another occurrence of a match of
the regular expression exists;false
otherwise
java.lang.IllegalStateException
- if no text input has yet been registered via the
setInput(String)
methodpublic int startOffset()
AbstractMatcher
startOffset
in class AbstractMatcher
public int endOffset()
AbstractMatcher
endOffset
in class AbstractMatcher
public int groupCount()
AbstractMatcher
groupCount
in class AbstractMatcher
public java.lang.String group(int index)
AbstractMatcher
null
is returned.
group
in class AbstractMatcher
index
- the index of the capturing group, or zero
null
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |