Package apple.foundation.enums
Class NSMatchingOptions
- java.lang.Object
-
- apple.foundation.enums.NSMatchingOptions
-
public final class NSMatchingOptions extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description static longAnchoredLimit matches to those at the start of the search range.static longReportCompletionCall the block once after the completion of any matching.static longReportProgressCall the block periodically during long-running match operations.static longWithoutAnchoringBoundsPrevent ^ and $ from automatically matching the beginning and end of the search range.static longWithTransparentBoundsAllow matching to look beyond the bounds of the search range.
-
-
-
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
-
-