Uses of Interface
com.gengoai.string.StringMatcher
-
Packages that use StringMatcher Package Description com.gengoai.string Functions, predicates, and utilities to create, format, parse, and manipulate strings. -
-
Uses of StringMatcher in com.gengoai.string
Fields in com.gengoai.string declared as StringMatcher Modifier and Type Field Description static StringMatcher
StringMatcher. Digit
Matches digit only CharSequencesstatic StringMatcher
StringMatcher. HasDigit
Matches CharSequences containing digitsstatic StringMatcher
StringMatcher. HasLetter
Matches CharSequences containing lettersstatic StringMatcher
StringMatcher. HasLetterOrDigit
Matches CharSequences containing letter or digitsstatic StringMatcher
StringMatcher. HasLowerCase
Matches CharSequences containing lower casestatic StringMatcher
StringMatcher. HasPunctuation
Matches CharSequences containing punctuation.static StringMatcher
StringMatcher. HasUpperCase
Matches CharSequences containing upper casestatic StringMatcher
StringMatcher. Letter
Matches CharSequences that are only lettersstatic StringMatcher
StringMatcher. LetterOrDigit
Matches CharSequences that are only letter or digitsstatic StringMatcher
StringMatcher. LetterOrWhitespace
Matches CharSequences containing all letter or whitespacestatic StringMatcher
StringMatcher. LowerCase
Matches CharSequences that are only lower casestatic StringMatcher
StringMatcher. NotNull
Matches CharSequences that are not null.static StringMatcher
StringMatcher. NotNullOrBlank
Matches CharSequences that are not null or blankstatic StringMatcher
StringMatcher. Null
Matches CharSequences are nullstatic StringMatcher
StringMatcher. NullOrBlank
Matches CharSequences that are null or blankstatic StringMatcher
StringMatcher. Punctuation
Matches punctuation only CharSequencesstatic StringMatcher
StringMatcher. UpperCase
Matches upper case only CharSequencesMethods in com.gengoai.string that return StringMatcher Modifier and Type Method Description default StringMatcher
StringMatcher. and(SerializablePredicate<? super CharSequence> other)
static StringMatcher
StringMatcher. contains(String match)
String matcher that evaluates true if the CharSequence contains the given string to match.static StringMatcher
StringMatcher. contains(String match, boolean caseSensitive)
String matcher that evaluates true if the CharSequence contains the given string to match.static StringMatcher
StringMatcher. endsWith(String match)
String matcher that evaluates true if the CharSequence ends with the given string to match.static StringMatcher
StringMatcher. endsWith(String match, boolean caseSensitive)
String matcher that evaluates true if the CharSequence ends with the given string to match.static StringMatcher
StringMatcher. matches(String match)
String matcher that evaluates true if the CharSequence matches the given string to match.static StringMatcher
StringMatcher. matches(String match, boolean caseSensitive)
String matcher that evaluates true if the CharSequence matches the given string to match.default StringMatcher
StringMatcher. negate()
default StringMatcher
StringMatcher. or(SerializablePredicate<? super CharSequence> other)
static StringMatcher
StringMatcher. regex(String pattern)
String matcher that evaluates true if the CharSequence is matched using the given regex.static StringMatcher
StringMatcher. regex(Pattern pattern)
String matcher that evaluates true if the CharSequence is matched using the given regex.static StringMatcher
StringMatcher. startsWith(String match)
String matcher that evaluates true if the CharSequence starts with the given string to match.static StringMatcher
StringMatcher. startsWith(String match, boolean caseSensitive)
String matcher that evaluates true if the CharSequence starts with the given string to match.
-