Removed Fields |
CharMatcher ANY
|
Matches any character. |
CharMatcher ASCII
|
Determines whether a character is ASCII, meaning that its code point is less than
128. |
CharMatcher BREAKING_WHITESPACE
|
Determines whether a character is a breaking whitespace (that is, a whitespace
which can be interpreted as a break between words for formatting purposes). |
CharMatcher DIGIT
|
Determines whether a character is a digit according to
Unicode. |
CharMatcher INVISIBLE
|
Determines whether a character is invisible; that is, if its Unicode category is
any of SPACE_SEPARATOR, LINE_SEPARATOR, PARAGRAPH_SEPARATOR, CONTROL, FORMAT,
SURROGATE, and PRIVATE_USE according to ICU4J. |
CharMatcher JAVA_DIGIT
|
Determines whether a character is a digit according to
Character#isDigit(char) Java's definition. |
CharMatcher JAVA_ISO_CONTROL
|
Determines whether a character is an ISO control character as specified by
Character.isISOControl(char). |
CharMatcher JAVA_LETTER
|
Determines whether a character is a letter according to
Character#isLetter(char) Java's definition. |
CharMatcher JAVA_LETTER_OR_DIGIT
|
Determines whether a character is a letter or digit according to
Character#isLetterOrDigit(char) Java's definition. |
CharMatcher JAVA_LOWER_CASE
|
Determines whether a character is lower case according to
Character#isLowerCase(char) Java's definition. |
CharMatcher JAVA_UPPER_CASE
|
Determines whether a character is upper case according to
Character#isUpperCase(char) Java's definition. |
CharMatcher NONE
|
Matches no characters. |
CharMatcher SINGLE_WIDTH
|
Determines whether a character is single-width (not double-width). |
CharMatcher WHITESPACE
|
Determines whether a character is whitespace according to the latest Unicode
standard, as illustrated
here. |