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)
| 683 | |
| 684 | |
| 685 | public boolean matchesNoneOf(CharSequence sequence) { |
| 686 | return indexIn(sequence) == -1; |
| 687 | } |
| 688 | |
| 689 | /** |
| 690 | * Returns the index of the first matching character in a character sequence, or {@code -1} if no |
no test coverage detected