Class CommonMatcher

  • Direct Known Subclasses:
    JdkPattern.JdkMatcher

    @GwtCompatible
    abstract class CommonMatcher
    extends java.lang.Object
    The subset of the Matcher API which is used by this package, and also shared with the re2j library. For internal use only. Please refer to the Matcher javadoc for details.
    • Constructor Summary

      Constructors 
      Constructor Description
      CommonMatcher()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      abstract int end()  
      abstract boolean find()  
      abstract boolean find​(int index)  
      abstract boolean matches()  
      abstract java.lang.String replaceAll​(java.lang.String replacement)  
      abstract int start()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • CommonMatcher

        CommonMatcher()
    • Method Detail

      • matches

        public abstract boolean matches()
      • find

        public abstract boolean find()
      • find

        public abstract boolean find​(int index)
      • replaceAll

        public abstract java.lang.String replaceAll​(java.lang.String replacement)
      • end

        public abstract int end()
      • start

        public abstract int start()