Package-level declarations
Types
Functions
Returns a copy of this string with its first character converted to upper case.
Returns a copy of this string with the first character of every whitespace separated word converted to upper case.
Replaces every run of whitespace in this string with a single space and removes leading and trailing whitespace.
Returns true when this string contains every element of substrings.
Returns true when this string contains at least one element of substrings.
Counts the non-overlapping occurrences of substring in this string.
Returns a copy of this string with its first character converted to lower case.
Returns a copy of this string containing only its digit characters.
Returns true when this string equals at least one element of candidates, ignoring case.
Returns true when this string is non-empty and every character is a letter or a digit.
Returns a copy of this string containing only its letter characters.
Replaces every character of this string with maskChar except the first visibleStart and the last visibleEnd characters.
Returns null when this string is blank, otherwise returns it unchanged.
Returns null when this string is empty, otherwise returns it unchanged.
Removes prefix from the start of this string, comparing case insensitively.
Removes suffix from the end of this string, comparing case insensitively.
Returns a copy of this string with every whitespace character removed.
Splits this string into its camel case segments.
Parses this string as a boolean, returning default when it matches neither value.
Converts this string to camelCase.
Converts this string to kebab-case.
Converts this string to PascalCase.
Converts this string to snake_case.