Returns a {@code char} matcher that matches only one specified BMP character.
(char match)
| 295 | |
| 296 | /** Returns a {@code char} matcher that matches only one specified BMP character. */ |
| 297 | public static CharMatcher is(char match) { |
| 298 | return new Is(match); |
| 299 | } |
| 300 | |
| 301 | /** |
| 302 | * Returns a {@code char} matcher that matches any character except the BMP character specified. |
no outgoing calls