Returns true if a character sequence contains no matching characters. Equivalent to !matchesAnyOf(sequence). The default implementation iterates over the sequence, invoking #matches for each character, until this returns true or the end is reached. @param sequenc
(CharSequence sequence)
| 609 | * the sequence is empty |
| 610 | */ |
| 611 | public boolean matchesNoneOf(CharSequence sequence) { |
| 612 | return indexIn(sequence) == -1; |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * Returns the index of the first matching character in a character sequence, or {@code -1} if no |
no test coverage detected