Interface RegexIterator.OnGroup

  • Enclosing interface:
    RegexIterator

    public static interface RegexIterator.OnGroup
    Interface defining a call-back action for processing captured groups
    • 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 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