Class NSMatchingOptions


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

      Fields 
      Modifier and Type Field Description
      static long Anchored
      Limit matches to those at the start of the search range.
      static long ReportCompletion
      Call the block once after the completion of any matching.
      static long ReportProgress
      Call the block periodically during long-running match operations.
      static long WithoutAnchoringBounds
      Prevent ^ and $ from automatically matching the beginning and end of the search range.
      static long WithTransparentBounds
      Allow matching to look beyond the bounds 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

      • ReportProgress

        public static final long ReportProgress
        Call the block periodically during long-running match operations.
        See Also:
        Constant Field Values
      • ReportCompletion

        public static final long ReportCompletion
        Call the block once after the completion of any matching.
        See Also:
        Constant Field Values
      • Anchored

        public static final long Anchored
        Limit matches to those at the start of the search range.
        See Also:
        Constant Field Values
      • WithTransparentBounds

        public static final long WithTransparentBounds
        Allow matching to look beyond the bounds of the search range.
        See Also:
        Constant Field Values
      • WithoutAnchoringBounds

        public static final long WithoutAnchoringBounds
        Prevent ^ and $ from automatically matching the beginning and end of the search range.
        See Also:
        Constant Field Values