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