Uses of Interface
com.gengoai.string.CharMatcher
-
Packages that use CharMatcher Package Description com.gengoai.collection.tree com.gengoai.string Functions, predicates, and utilities to create, format, parse, and manipulate strings. -
-
Uses of CharMatcher in com.gengoai.collection.tree
Methods in com.gengoai.collection.tree with parameters of type CharMatcher Modifier and Type Method Description List<TrieMatch<V>>
Trie. find(String text, CharMatcher delimiter)
Matches the strings in the trie against a specified text. -
Uses of CharMatcher in com.gengoai.string
Fields in com.gengoai.string declared as CharMatcher Modifier and Type Field Description static CharMatcher
CharMatcher. Any
Matches any characterstatic CharMatcher
CharMatcher. Ascii
Matches any ascii character (int value<=
127)static CharMatcher
CharMatcher. BreakingWhiteSpace
Matches breaking whitespace.static CharMatcher
CharMatcher. Digit
Matches digits defined usingCharacter.isDigit(char)
static CharMatcher
CharMatcher. Ideographic
Matches ideographic characters defined usingCharacter.isIdeographic(int)
static CharMatcher
CharMatcher. Letter
Matches letters defined usingCharacter.isLetter(char)
static CharMatcher
CharMatcher. LetterOrDigit
Matches letters or digits usingCharacter.isLetterOrDigit(char)
static CharMatcher
CharMatcher. LowerCase
Matches lower case usingCharacter.isLowerCase(char)
static CharMatcher
CharMatcher. None
Matches nothingstatic CharMatcher
CharMatcher. Punctuation
Matches punctuation.static CharMatcher
CharMatcher. UpperCase
Matches upper case usingCharacter.isUpperCase(char)
static CharMatcher
CharMatcher. WhiteSpace
Matches whitespace usingCharacter.isWhitespace(char)
Methods in com.gengoai.string that return CharMatcher Modifier and Type Method Description default CharMatcher
CharMatcher. and(@NonNull SerializablePredicate<? super Character> other)
static CharMatcher
CharMatcher. anyOf(@NonNull CharSequence characters)
Matches against any character in the given sequence.sdefault CharMatcher
CharMatcher. negate()
default CharMatcher
CharMatcher. or(@NonNull SerializablePredicate<? super Character> other)
Methods in com.gengoai.string with parameters of type CharMatcher Modifier and Type Method Description static String
Strings. randomString(int length, int min, int max, CharMatcher validChar)
Generates a random string of a given lengthstatic String
Strings. randomString(int length, CharMatcher validChar)
Generates a random string of a given length
-