Returns a char matcher that matches any character not present in the given character sequence.
(CharSequence sequence)
| 410 | * sequence. |
| 411 | */ |
| 412 | public static CharMatcher noneOf(CharSequence sequence) { |
| 413 | return anyOf(sequence).negate(); |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Returns a {@code char} matcher that matches any character in a given range (both endpoints are |
no test coverage detected