Package net.sf.saxon.functions.regex
Interface RegexIterator.OnGroup
-
- Enclosing interface:
- RegexIterator
public static interface RegexIterator.OnGroupInterface defining a call-back action for processing captured groups
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonGroupEnd(XPathContext c, int groupNumber)Method to be called when the end of a captured group is encounteredvoidonGroupStart(XPathContext c, int groupNumber)Method to be called when the start of a captured group is encountered
-
-
-
Method Detail
-
onGroupStart
void onGroupStart(XPathContext c, int groupNumber) throws XPathException
Method to be called when the start of a captured group is encountered- Parameters:
c- the dynamic evaluation contextgroupNumber- the group number of the captured group- Throws:
XPathException
-
onGroupEnd
void onGroupEnd(XPathContext c, int groupNumber) throws XPathException
Method to be called when the end of a captured group is encountered- Parameters:
c- the dynamic evaluation contextgroupNumber- the group number of the captured group- Throws:
XPathException
-
-