| CharMatcher | CharMatcher. and(CharMatcher other) | Returns a matcher that matches any character matched by both this matcher and other. | 
| static CharMatcher | CharMatcher. any() | Matches any character. | 
| static CharMatcher | CharMatcher. anyOf(java.lang.CharSequence sequence) | Returns a charmatcher that matches any BMP character present in the given character
 sequence. | 
| static CharMatcher | CharMatcher. ascii() | Determines whether a character is ASCII, meaning that its code point is less than 128. | 
| static CharMatcher | CharMatcher. breakingWhitespace() | Determines whether a character is a breaking whitespace (that is, a whitespace which can be
 interpreted as a break between words for formatting purposes). | 
| static CharMatcher | CharMatcher. digit() | Deprecated.
 | 
| static CharMatcher | CharMatcher. forPredicate(Predicate<? super java.lang.Character> predicate) | Returns a matcher with identical behavior to the given Character-based predicate, but
 which operates on primitivecharinstances instead. | 
| static CharMatcher | CharMatcher. inRange(char startInclusive,
       char endInclusive) | Returns a charmatcher that matches any character in a given BMP range (both endpoints
 are inclusive). | 
| static CharMatcher | CharMatcher. invisible() | Deprecated.
 | 
| static CharMatcher | CharMatcher. is(char match) | Returns a charmatcher that matches only one specified BMP character. | 
| static CharMatcher | CharMatcher. isNot(char match) | Returns a charmatcher that matches any character except the BMP character specified. | 
| static CharMatcher | CharMatcher. javaDigit() | Deprecated.
 | 
| static CharMatcher | CharMatcher. javaIsoControl() | Determines whether a character is an ISO control character as specified by Character.isISOControl(char). | 
| static CharMatcher | CharMatcher. javaLetter() | Deprecated.
 | 
| static CharMatcher | CharMatcher. javaLetterOrDigit() | Deprecated.
 | 
| static CharMatcher | CharMatcher. javaLowerCase() | Deprecated.
 | 
| static CharMatcher | CharMatcher. javaUpperCase() | Deprecated.
 | 
| CharMatcher | CharMatcher. negate() | Returns a matcher that matches any character not matched by this matcher. | 
| static CharMatcher | CharMatcher. none() | Matches no characters. | 
| static CharMatcher | CharMatcher. noneOf(java.lang.CharSequence sequence) | Returns a charmatcher that matches any BMP character not present in the given
 character sequence. | 
| CharMatcher | CharMatcher. or(CharMatcher other) | Returns a matcher that matches any character matched by either this matcher or other. | 
| CharMatcher | CharMatcher. precomputed() | Returns a charmatcher functionally equivalent to this one, but which may be faster to
 query than the original; your mileage may vary. | 
| static CharMatcher | CharMatcher. singleWidth() | Deprecated.
 | 
| static CharMatcher | CharMatcher. whitespace() | Determines whether a character is whitespace according to the latest Unicode standard, as
 illustrated here . |