Returns a {@code char} matcher that matches any character except the BMP character specified. <p>To negate another {@code CharMatcher}, use {@link #negate()}.
(char match)
| 304 | * <p>To negate another {@code CharMatcher}, use {@link #negate()}. |
| 305 | */ |
| 306 | public static CharMatcher isNot(char match) { |
| 307 | return new IsNot(match); |
| 308 | } |
| 309 | |
| 310 | /** |
| 311 | * Returns a {@code char} matcher that matches any BMP character present in the given character |
no outgoing calls