|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StringBufferExt | |
com.amx.duet.tools.text | Provides String manipulation classes and interfaces such as changing numerics to strings and back as well as converting hex values. |
Uses of StringBufferExt in com.amx.duet.tools.text |
Methods in com.amx.duet.tools.text that return StringBufferExt | |
StringBufferExt |
StringBufferExt.set(java.lang.Object obj)
Sets this string buffer to the string representation of the Object
argument. |
StringBufferExt |
StringBufferExt.set(java.lang.String str)
Sets this string buffer to the string argument. |
StringBufferExt |
StringBufferExt.set(java.lang.StringBuffer sb)
Sets this sequence to the specified StringBufferExt. |
StringBufferExt |
StringBufferExt.set(StringBufferExt sb)
Sets this string buffer to the specified StringBufferExt sequence. |
StringBufferExt |
StringBufferExt.set(char[] str)
Sets this string buffer to the string representation of the char
array argument. |
StringBufferExt |
StringBufferExt.set(char[] str,
int offset,
int len)
Sets this string buffer to the string representation of a subarray of the char array argument. |
StringBufferExt |
StringBufferExt.set(boolean b)
Set this string buffer to the string representation of the boolean
argument. |
StringBufferExt |
StringBufferExt.set(char c)
Sets this string buffer to the string representation of the char
argument. |
StringBufferExt |
StringBufferExt.set(int i)
Set this string buffer to the string representation of the int
argument. |
StringBufferExt |
StringBufferExt.set(long l)
Sets this string buffer to the string representation of the long
argument. |
StringBufferExt |
StringBufferExt.set(float f)
Sets this string buffer to the string representation of the float
argument. |
StringBufferExt |
StringBufferExt.set(double d)
Sets this string buffer to the string representation of the double
argument. |
StringBufferExt |
StringBufferExt.append(java.lang.Object obj)
Appends the string representation of the Object
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(java.lang.String str)
Appends the string to this string buffer. |
StringBufferExt |
StringBufferExt.append(java.lang.StringBuffer sb)
Appends the specified StringBuffer to this sequence. |
StringBufferExt |
StringBufferExt.append(StringBufferExt sb)
Appends the specified StringBufferExt to this sequence. |
StringBufferExt |
StringBufferExt.append(char[] str)
Appends the string representation of the char array
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(char[] str,
int offset,
int len)
Appends the string representation of a subarray of the char array argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(boolean b)
Appends the string representation of the boolean
argument to the string buffer. |
StringBufferExt |
StringBufferExt.append(char c)
Appends the string representation of the char
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(int i)
Appends the string representation of the int
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(long l)
Appends the string representation of the long
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(float f)
Appends the string representation of the float
argument to this string buffer. |
StringBufferExt |
StringBufferExt.append(double d)
Appends the string representation of the double
argument to this string buffer. |
StringBufferExt |
StringBufferExt.delete()
Removes the entire contents of this string buffer from beginning to end. |
StringBufferExt |
StringBufferExt.delete(int len)
Removes the characters in a substring of this StringBufferExt
up to the specified length. |
StringBufferExt |
StringBufferExt.delete(int start,
int end)
Removes the characters in a substring of this StringBufferExt . |
StringBufferExt |
StringBufferExt.deleteCharAt(int index)
Removes the character at the specified position in this StringBufferExt (shortening the StringBufferExt
by one character). |
StringBufferExt |
StringBufferExt.replace(int start,
int end,
java.lang.String str)
Replaces the characters in a substring of this StringBufferExt
with characters in the specified String . |
StringBufferExt |
StringBufferExt.insert(int index,
char[] str,
int offset,
int len)
Inserts the string representation of a subarray of the str
array argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
java.lang.Object obj)
Inserts the string representation of the Object
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
java.lang.String str)
Inserts the string into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
char[] str)
Inserts the string representation of the char array
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
boolean b)
Inserts the string representation of the boolean
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
char c)
Inserts the string representation of the char
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
int i)
Inserts the string representation of the second int
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
long l)
Inserts the string representation of the long
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
float f)
Inserts the string representation of the float
argument into this string buffer. |
StringBufferExt |
StringBufferExt.insert(int offset,
double d)
Inserts the string representation of the double
argument into this string buffer. |
StringBufferExt |
StringBufferExt.reverse()
The character sequence contained in this string buffer is replaced by the reverse of the sequence. |
Methods in com.amx.duet.tools.text with parameters of type StringBufferExt | |
StringBufferExt |
StringBufferExt.set(StringBufferExt sb)
Sets this string buffer to the specified StringBufferExt sequence. |
StringBufferExt |
StringBufferExt.append(StringBufferExt sb)
Appends the specified StringBufferExt to this sequence. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |