Class RegExpTree.RegExpTreeAtom

    • Constructor Detail

      • RegExpTreeAtom

        public RegExpTreeAtom()
    • Method Detail

      • isCaseSensitive

        public boolean isCaseSensitive()
        Description copied from class: RegExpTree
        True if the presence or absence of an "i" flag would change the meaning of this regular expression.
        Specified by:
        isCaseSensitive in class RegExpTree
      • containsAnchor

        public boolean containsAnchor()
        Description copied from class: RegExpTree
        True if the regular expression contains an anchor : ^ or $.
        Specified by:
        containsAnchor in class RegExpTree
      • numCapturingGroups

        public final int numCapturingGroups()
        Description copied from class: RegExpTree
        The number of capturing groups.
        Specified by:
        numCapturingGroups in class RegExpTree
      • children

        public final com.google.common.collect.ImmutableList<? extends RegExpTree> children()
        Description copied from class: RegExpTree
        The children of this node.
        Specified by:
        children in class RegExpTree