Returns {@code true} if a character sequence contains no matching BMP characters. Equivalent to {@code !matchesAnyOf(sequence)}. <p>The default implementation iterates over the sequence, invoking {@link #matches} for each character, until this returns {@code true} or the end is reached. @param seq
(CharSequence sequence)
| 528 | * sequence is empty |
| 529 | */ |
| 530 | public boolean matchesNoneOf(CharSequence sequence) { |
| 531 | return indexIn(sequence) == -1; |
| 532 | } |
| 533 | |
| 534 | /** |
| 535 | * Returns the index of the first matching BMP character in a character sequence, or {@code -1} if |