| |
|
| java.lang.Object org.radeox.regex.MatchResult
All known Subclasses: org.radeox.regex.JdkMatchResult,
MatchResult | abstract public class MatchResult (Code) | | |
beginOffset | abstract public int beginOffset(int i)(Code) | | The offset of the beginning of the match for the group with the index i
Parameters: i - index for the group Offset of the group |
create | public static MatchResult create(Matcher matcher)(Code) | | Create a new MatchResult depending on the used implementation
Parameters: matcher - Matcher object of the implementation MatchResult for the Matcher |
endOffset | abstract public int endOffset(int i)(Code) | | The offset of the end of the match for the group with the index i
Parameters: i - index for the group Offset of the group |
group | abstract public String group(int i)(Code) | | Return the content of group with the index i
Parameters: i - index for the group Content of the group with the index i |
groups | abstract public int groups()(Code) | | Returns the number of groups (...) found
Number of found groups |
|
|
|