Package net.sf.saxon.functions.regex
Interface RegexIterator.OnGroup
- Enclosing interface:
- RegexIterator
public static interface RegexIterator.OnGroup
Interface defining a call-back action for processing captured groups
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onGroupEnd
(XPathContext c, int groupNumber) Method to be called when the end of a captured group is encounteredvoid
onGroupStart
(XPathContext c, int groupNumber) Method to be called when the start of a captured group is encountered
-
Method Details
-
onGroupStart
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
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
-