Returns true if the given character is considered to be whitespace. One difference between Java's Character.isWhitespace() is that this method considers a hard space (non-breaking space, or nbsp) to be whitespace.
(int ch)
| 260 | * or nbsp) to be whitespace. |
| 261 | */ |
| 262 | protected static final boolean isWhitespace(int ch) { |
| 263 | return (Character.isWhitespace(ch) || ch == 0x00a0); |
| 264 | } |
| 265 | |
| 266 | private static final long WS_MASK = |
| 267 | (1L << ' ') |
no outgoing calls
no test coverage detected