Determines whether a character is a breaking whitespace (that is, a whitespace which can be interpreted as a break between words for formatting purposes). See #whitespace() for a discussion of that term. @since 19.0 (since 2.0 as constant BREAKING_WHITESPACE)
()
| 106 | |
| 107 | |
| 108 | public static CharMatcher breakingWhitespace() { |
| 109 | return BreakingWhitespace.INSTANCE; |
| 110 | } |
| 111 | |
| 112 | /** |
| 113 | * Determines whether a character is ASCII, meaning that its code point is less than 128. |