Returns a char matcher that matches only one specified character.
(final char match)
| 374 | * Returns a {@code char} matcher that matches only one specified character. |
| 375 | */ |
| 376 | public static CharMatcher is(final char match) { |
| 377 | return new Is(match); |
| 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Returns a {@code char} matcher that matches any character except the one specified. |
no outgoing calls
no test coverage detected