Class NSMatchingFlags


  • public final class NSMatchingFlags
    extends java.lang.Object
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static long Completed
      Set when the block is called after completion of any matching.
      static long HitEnd
      Set when the current match operation reached the end of the search range.
      static long InternalError
      Set when matching failed due to an internal error.
      static long Progress
      Set when the block is called to report progress during a long-running match operation.
      static long RequiredEnd
      Set when the current match depended on the location of the end of the search range.
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • Progress

        public static final long Progress
        Set when the block is called to report progress during a long-running match operation.
        See Also:
        Constant Field Values
      • Completed

        public static final long Completed
        Set when the block is called after completion of any matching.
        See Also:
        Constant Field Values
      • HitEnd

        public static final long HitEnd
        Set when the current match operation reached the end of the search range.
        See Also:
        Constant Field Values
      • RequiredEnd

        public static final long RequiredEnd
        Set when the current match depended on the location of the end of the search range.
        See Also:
        Constant Field Values
      • InternalError

        public static final long InternalError
        Set when matching failed due to an internal error.
        See Also:
        Constant Field Values