static AsciiString |
AsciiString.cached(String string) |
Returns an AsciiString containing the given string and retains/caches the input
string for later use in toString() .
|
AsciiString |
AsciiString.concat(CharSequence string) |
Concatenates this string and the specified string.
|
static AsciiString |
AsciiString.of(CharSequence string) |
Returns an AsciiString containing the given character sequence.
|
AsciiString |
AsciiString.replace(char oldChar,
char newChar) |
Copies this string replacing occurrences of the specified character with another character.
|
AsciiString[] |
AsciiString.split(char delim) |
Splits the specified String with the specified delimiter..
|
AsciiString[] |
AsciiString.split(String expr,
int max) |
Splits this string using the supplied regular expression expr .
|
AsciiString |
AsciiString.subSequence(int start) |
Copies a range of characters into a new string.
|
AsciiString |
AsciiString.subSequence(int start,
int end) |
Copies a range of characters into a new string.
|
AsciiString |
AsciiString.subSequence(int start,
int end,
boolean copy) |
Either copy or share a subset of underlying sub-sequence of bytes.
|
AsciiString |
AsciiString.toLowerCase() |
Converts the characters in this string to lowercase, using the default Locale.
|
AsciiString |
AsciiString.toUpperCase() |
Converts the characters in this string to uppercase, using the default Locale.
|
AsciiString |
AsciiString.trim() |
Duplicates this string removing white space characters from the beginning and end of the
string, without copying.
|