| Package | Description | 
|---|---|
| com.google.common.base | 
 Basic utility libraries and interfaces. 
 | 
| Modifier and Type | Field and Description | 
|---|---|
static CharMatcher | 
CharMatcher.ANY
Deprecated. 
 
Use  
any() instead. This constant is scheduled to be
     removed in June 2018. | 
static CharMatcher | 
CharMatcher.ASCII
Deprecated. 
 
Use  
ascii() instead. This constant is scheduled to be
     removed in June 2018. | 
static CharMatcher | 
CharMatcher.BREAKING_WHITESPACE
Deprecated. 
 
Use  
breakingWhitespace() instead. This constant is scheduled
     to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.DIGIT
Deprecated. 
 
Many digits are supplementary characters; see the class
     documentation. If you need to use this, use  
digit() instead. This
 .   constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.INVISIBLE
Deprecated. 
 
Most invisible characters are supplementary characters; see the class
     documentation. If you need to use this, use  
invisible() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_DIGIT
Deprecated. 
 
Many digits are supplementary characters; see the class
     documentation. If you need to use this, use  
javaDigit() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_ISO_CONTROL
Deprecated. 
 
Use  
javaIsoControl() instead. This constant is scheduled to
     be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_LETTER
Deprecated. 
 
Most letters are supplementary characters; see the class
     documentation. If you need to use this, use  
javaLetter() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_LETTER_OR_DIGIT
Deprecated. 
 
Most letters and digits are supplementary characters; see the class
     documentation. If you need to use this, use  
javaLetterOrDigit()
     instead. This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_LOWER_CASE
Deprecated. 
 
Some lowercase letters are supplementary characters; see the class
     documentation. If you need to use this, use  
javaLowerCase() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.JAVA_UPPER_CASE
Deprecated. 
 
Some uppercase letters are supplementary characters; see the class
     documentation. If you need to use this, use  
javaUpperCase() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.NONE
Deprecated. 
 
Use  
none() instead. This constant is scheduled to be
     removed in June 2018. | 
static CharMatcher | 
CharMatcher.SINGLE_WIDTH
Deprecated. 
 
Many such characters are supplementary characters; see the class
     documentation. If you need to use this, use  
singleWidth() instead.
     This constant is scheduled to be removed in June 2018. | 
static CharMatcher | 
CharMatcher.WHITESPACE
Deprecated. 
 
Use  
whitespace() instead. This constant is scheduled to be
     removed in June 2018. | 
| Modifier and Type | Method and Description | 
|---|---|
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(CharSequence sequence)
Returns a  
char matcher 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. 
 
Many digits are supplementary characters; see the class documentation. 
 | 
static CharMatcher | 
CharMatcher.forPredicate(Predicate<? super Character> predicate)
Returns a matcher with identical behavior to the given  
Character-based predicate, but
 which operates on primitive char instances instead. | 
static CharMatcher | 
CharMatcher.inRange(char startInclusive,
       char endInclusive)
Returns a  
char matcher that matches any character in a given BMP range (both endpoints
 are inclusive). | 
static CharMatcher | 
CharMatcher.invisible()
Deprecated. 
 
Most invisible characters are supplementary characters; see the class
     documentation. 
 | 
static CharMatcher | 
CharMatcher.is(char match)
Returns a  
char matcher that matches only one specified BMP character. | 
static CharMatcher | 
CharMatcher.isNot(char match)
Returns a  
char matcher that matches any character except the BMP character specified. | 
static CharMatcher | 
CharMatcher.javaDigit()
Deprecated. 
 
Many digits are supplementary characters; see the class documentation. 
 | 
static CharMatcher | 
CharMatcher.javaIsoControl()
Determines whether a character is an ISO control character as specified by  
Character.isISOControl(char). | 
static CharMatcher | 
CharMatcher.javaLetter()
Deprecated. 
 
Most letters are supplementary characters; see the class documentation. 
 | 
static CharMatcher | 
CharMatcher.javaLetterOrDigit()
Deprecated. 
 
Most letters and digits are supplementary characters; see the class documentation. 
 | 
static CharMatcher | 
CharMatcher.javaLowerCase()
Deprecated. 
 
Some lowercase characters are supplementary characters; see the class
     documentation. 
 | 
static CharMatcher | 
CharMatcher.javaUpperCase()
Deprecated. 
 
Some uppercase characters are supplementary characters; see the class
     documentation. 
 | 
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(CharSequence sequence)
Returns a  
char matcher 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  
char matcher functionally equivalent to this one, but which may be faster to
 query than the original; your mileage may vary. | 
static CharMatcher | 
CharMatcher.singleWidth()
Deprecated. 
 
Many such characters are supplementary characters; see the class documentation. 
 | 
static CharMatcher | 
CharMatcher.whitespace()
Determines whether a character is whitespace according to the latest Unicode standard, as
 illustrated here. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
CharMatcher | 
CharMatcher.and(CharMatcher other)
Returns a matcher that matches any character matched by both this matcher and  
other. | 
static Splitter | 
Splitter.on(CharMatcher separatorMatcher)
Returns a splitter that considers any single character matched by the given  
CharMatcher
 to be a separator. | 
CharMatcher | 
CharMatcher.or(CharMatcher other)
Returns a matcher that matches any character matched by either this matcher or  
other. | 
Splitter | 
Splitter.trimResults(CharMatcher trimmer)
Returns a splitter that behaves equivalently to  
this splitter, but removes all leading
 or trailing characters matching the given CharMatcher from each returned substring. | 
Copyright © 2010–2018. All rights reserved.