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 Type
    Method
    Description
    void
    onGroupEnd(XPathContext c, int groupNumber)
    Method to be called when the end of a captured group is encountered
    void
    onGroupStart(XPathContext c, int groupNumber)
    Method to be called when the start of a captured group is encountered
  • Method Details

    • 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 context
      groupNumber - 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 context
      groupNumber - the group number of the captured group
      Throws:
      XPathException