Returns a matcher that matches any character not matched by this matcher.
()
| 451 | * Returns a matcher that matches any character not matched by this matcher. |
| 452 | */ |
| 453 | public CharMatcher negate() { |
| 454 | return new Negated(this); |
| 455 | } |
| 456 | |
| 457 | /** |
| 458 | * Returns a matcher that matches any character matched by both this matcher and {@code other}. |
no outgoing calls
no test coverage detected