A C E F G I L M P R S T 
All Classes All Packages

A

all(CharSequence, CharPredicate) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 

C

contains(CharSequence, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
contains(CharSequence, char, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence contains the specified character char.
contains(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
contains(CharSequence, CharSequence, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence contains the specified other sequence of characters as a substring.

E

emptyIfNull(String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns the string if it is not null, or the empty string otherwise.
endsWith(CharSequence, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence ends with the specified character.
endsWith(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence ends with the specified suffix.
endsWithIgnoreCase(CharSequence, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
endsWithIgnoreCase(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence ends with the specified prefix.

F

findAnyOf(CharSequence, Collection<String>) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
findAnyOf(CharSequence, Collection<String>, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
findAnyOf(CharSequence, Collection<String>, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the first occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case.
findLastAnyOf(CharSequence, Collection<String>) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
findLastAnyOf(CharSequence, Collection<String>, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
findLastAnyOf(CharSequence, Collection<String>, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the last occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case.
first(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 

G

get(CharSequence, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Implement the index operator to enable indexed access to characters such as text[i].

I

indexOf(CharSequence, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, int, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, int, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns the index within this string of the first occurrence of the specified character, starting from the specified startIndex.
indexOf(CharSequence, String) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, String, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, String, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOf(CharSequence, String, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns the index within this char sequence of the first occurrence of the specified string, starting from the specified startIndex.
indexOfAny(CharSequence, char[]) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOfAny(CharSequence, char[], int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOfAny(CharSequence, char[], int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the index of the first occurrence of any of the specified chars in this char sequence, starting from the specified startIndex and optionally ignoring the case.
indexOfAny(CharSequence, Collection<String>) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOfAny(CharSequence, Collection<String>, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
indexOfAny(CharSequence, Collection<String>, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the index of the first occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case.
isBlank(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence is empty or contains only whitespace characters.
isEmpty(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence is empty (contains no characters).
isNotEmpty(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence is not empty.
isNullOrBlank(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this nullable char sequence is either null or empty or consists solely of whitespace characters.
isNullOrEmpty(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this nullable char sequence is either null or empty.

L

last(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndex(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns the index of the last character in the char sequence or -1 if it is empty.
lastIndexOf(CharSequence, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, int, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, int, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns the index within this char sequence of the last occurrence of the specified character, starting from the specified startIndex.
lastIndexOf(CharSequence, String) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, String, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, String, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOf(CharSequence, String, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns the index within this char sequence of the last occurrence of the specified string, starting from the specified startIndex.
lastIndexOfAny(CharSequence, char[]) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOfAny(CharSequence, char[], int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOfAny(CharSequence, char[], int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the index of the last occurrence of any of the specified chars in this char sequence, starting from the specified startIndex and optionally ignoring the case.
lastIndexOfAny(CharSequence, Collection<String>) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOfAny(CharSequence, Collection<String>, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
lastIndexOfAny(CharSequence, Collection<String>, int, boolean) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Finds the index of the last occurrence of any of the specified strings in this char sequence, starting from the specified startIndex and optionally ignoring the case.

M

ManCharSequenceExt - Class in manifold.text.extensions.java.lang.CharSequence
 
ManCharSequenceExt() - Constructor for class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
manifold.text.extensions.java.lang.CharSequence - package manifold.text.extensions.java.lang.CharSequence
 
manifold.text.extensions.java.lang.String - package manifold.text.extensions.java.lang.String
 
manifold.text.extensions.java.lang.StringBuilder - package manifold.text.extensions.java.lang.StringBuilder
 
ManStringBuilderExt - Class in manifold.text.extensions.java.lang.StringBuilder
 
ManStringBuilderExt() - Constructor for class manifold.text.extensions.java.lang.StringBuilder.ManStringBuilderExt
 
ManStringExt - Class in manifold.text.extensions.java.lang.String
Adapted from kotlin.text.String
ManStringExt() - Constructor for class manifold.text.extensions.java.lang.String.ManStringExt
 

P

padEnd(CharSequence, int, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a char sequence with content of this char sequence padded at the end to the specified length with the specified character or space.
padEnd(String, int, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Pads the string to the specified length at the end with the specified character or space.
padStart(CharSequence, int, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a char sequence with content of this char sequence padded at the beginning to the specified length with the specified character or space.
padStart(String, int, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Pads the string to the specified length at the beginning with the specified character or space.

R

removePrefix(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
If this char sequence starts with the given prefix, returns a new char sequence with the prefix removed.
removePrefix(String, CharSequence) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
If thiz string starts with the given prefix, returns a copy of thiz string with the prefix removed.
removeSuffix(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
If this char sequence ends with the given suffix, returns a new char sequence with the suffix removed.
removeSuffix(String, CharSequence) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
If thiz string ends with the given suffix, returns a copy of thiz string with the suffix removed.
removeSurrounding(String, CharSequence) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Removes the given delimiter string from both the start and the end of thiz string if and only if it starts with and ends with the delimiter.
removeSurrounding(String, CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Removes from a string both the given prefix and suffix if and only if it starts with the prefix and ends with the suffix.

S

set(StringBuilder, int, char) - Static method in class manifold.text.extensions.java.lang.StringBuilder.ManStringBuilderExt
Implements the index operator for assignment such as text[i] = 'x'
startsWith(CharSequence, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence starts with the specified character.
startsWith(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence starts with the specified prefix.
startsWithIgnoreCase(CharSequence, char) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
startsWithIgnoreCase(CharSequence, CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns true if this char sequence starts with the specified prefix.
substring(CharSequence, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
 
substring(CharSequence, int, int) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a substring of chars from a range of this char sequence starting at the startIndex and ending right before the endIndex.
substringAfter(String, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring after the first occurrence of delimiter or null if the string does not contain the delimiter
substringAfter(String, String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring after the first occurrence of delimiter or null if the string does not contain the delimiter
substringAfterLast(String, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring after the last occurrence of delimiter or null if the string does not contain the delimiter
substringAfterLast(String, String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring after the last occurrence of delimiter or null if the string does not contain the delimiter
substringBefore(String, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring before the first occurrence of delimiter or null if the string does not contain the delimiter
substringBefore(String, String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring before the first occurrence of delimiter or null if the string does not contain the delimiter
substringBeforeLast(String, char) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring before the last occurrence of delimiter or null if the string does not contain the delimiter
substringBeforeLast(String, String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a substring before the last occurrence of delimiter or null if the string does not contain the delimiter

T

trim(CharSequence, char...) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having leading and trailing characters from the chars array trimmed.
trim(CharSequence, CharPredicate) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having leading and trailing characters matching the predicate trimmed.
trim(String, char...) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with leading and trailing characters from the chars array trimmed.
trim(String, CharPredicate) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with leading and trailing characters matching the predicate trimmed.
trimEnd(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having trailing whitespace removed.
trimEnd(CharSequence, char...) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having trailing characters from the chars array trimmed.
trimEnd(CharSequence, CharPredicate) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having trailing characters matching the predicate trimmed.
trimEnd(String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with trailing whitespace removed.
trimEnd(String, char...) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with trailing characters from the chars array trimmed.
trimEnd(String, CharPredicate) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with trailing characters matching the predicate trimmed.
trimStart(CharSequence) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having leading whitespace removed.
trimStart(CharSequence, char...) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having leading and trailing characters from the chars array trimmed.
trimStart(CharSequence, CharPredicate) - Static method in class manifold.text.extensions.java.lang.CharSequence.ManCharSequenceExt
Returns a sub sequence of this char sequence having leading characters matching the predicate trimmed.
trimStart(String) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with leading whitespace removed.
trimStart(String, char...) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with leading and trailing characters from the chars array trimmed.
trimStart(String, CharPredicate) - Static method in class manifold.text.extensions.java.lang.String.ManStringExt
Returns a string with leading characters matching the predicate trimmed.
A C E F G I L M P R S T 
All Classes All Packages