|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.radeox.regex.MatchResult
Constructor Summary | |
MatchResult()
|
Method Summary | |
abstract int |
beginOffset(int i)
The offset of the beginning of the match for the group with the index i |
static MatchResult |
create(Matcher matcher)
Create a new MatchResult depending on the used implementation |
abstract int |
endOffset(int i)
The offset of the end of the match for the group with the index i |
abstract java.lang.String |
group(int i)
Return the content of group with the index i |
abstract int |
groups()
Returns the number of groups (...) found |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
public MatchResult()
Method Detail |
public static MatchResult create(Matcher matcher)
matcher
- Matcher object of the implementation
public abstract int groups()
public abstract java.lang.String group(int i)
i
- index for the group
public abstract int beginOffset(int i)
i
- index for the group
public abstract int endOffset(int i)
i
- index for the group
|
|||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |