Returns a char matcher that matches only one specified character.
(final char match)
| 417 | |
| 418 | |
| 419 | public static CharMatcher is(final char match) { |
| 420 | return new Is(match); |
| 421 | } |
| 422 | |
| 423 | /** |
| 424 | * Returns a {@code char} matcher that matches any character except the one specified. |
no outgoing calls
no test coverage detected