The methods of Java.Lang.StringBuilder are listed below. For a list of all members, see the StringBuilder Members list.
See Also: Inherited members from Java.Lang.AbstractStringBuilder
override | Append(ICharSequence)Appends the string representation of the specified CharSequence. | |
Append(Object)Appends the string representation of the specified Object. | ||
Append(StringBuffer)Appends the contents of the specified StringBuffer. | ||
Append(bool)Appends the string representation of the specified boolean value. | ||
override | Append(char)Appends the string representation of the specified char value. | |
Append(char[])Appends the string representation of the specified char[]. | ||
Append(double)Appends the string representation of the specified double value. | ||
Append(int)Appends the string representation of the specified int value. | ||
Append(long)Appends the string representation of the specified long value. | ||
Append(float)Appends the string representation of the specified float value. | ||
Append(string)Appends the contents of the specified string. | ||
override | Append(ICharSequence, int, int)Appends the string representation of the specified subsequence of the CharSequence. | |
Append(char[], int, int)Appends the string representation of the specified subset of the char[]. | ||
AppendCodePoint(int)Appends the encoded Unicode code point. | ||
override | Capacity()Returns the number of characters that can be held without growing. | |
override | CharAt(int)Returns the character at index. | |
override | CodePointAt(int)Retrieves the Unicode code point value at the index. | |
override | CodePointBefore(int)Retrieves the Unicode code point value that precedes the index. | |
override | CodePointCount(int, int)Calculates the number of Unicode code points between start and end. | |
Delete(int, int)Deletes a sequence of characters specified by start and end. | ||
DeleteCharAt(int)Deletes the character at the specified index. shifts any remaining characters to the left. | ||
override | EnsureCapacity(int)Ensures that this object has a minimum capacity available before requiring the internal buffer to be enlarged. | |
override | GetChars(int, int, char[], int)Copies the requested sequence of characters into dst passed starting at dst. | |
GetEnumerator()Documentation for this section has not yet been entered. | ||
override | IndexOf(string)Searches for the first index of the specified character. | |
override | IndexOf(string, int)Searches for the index of the specified character. | |
Insert(int, ICharSequence)Inserts the string representation of the specified CharSequence at the specified offset. | ||
Insert(int, Object)Inserts the string representation of the specified Object at the specified offset. | ||
Insert(int, bool)Inserts the string representation of the specified boolean value at the specified offset. | ||
Insert(int, char)Inserts the string representation of the specified char value at the specified offset. | ||
Insert(int, char[])Inserts the string representation of the specified char[] at the specified offset. | ||
Insert(int, double)Inserts the string representation of the specified double value at the specified offset. | ||
Insert(int, int)Inserts the string representation of the specified int value at the specified offset. | ||
Insert(int, long)Inserts the string representation of the specified long value at the specified offset. | ||
Insert(int, float)Inserts the string representation of the specified float value at the specified offset. | ||
Insert(int, string)Inserts the specified string at the specified offset. | ||
Insert(int, ICharSequence, int, int)Inserts the string representation of the specified subsequence of the CharSequence at the specified offset. | ||
Insert(int, char[], int, int)Inserts the string representation of the specified subsequence of the char[] at the specified offset. | ||
Insert(int, string, int, int)Documentation for this section has not yet been entered. | ||
override | LastIndexOf(string)Searches for the last index of the specified character. | |
override | LastIndexOf(string, int)Searches for the index of the specified character. | |
override | Length()The current length. | |
override | OffsetByCodePoints(int, int)Returns the index that is offset codePointOffset code points from index. | |
Replace(int, int, string)Replaces the specified subsequence in this builder with the specified string. | ||
Reverse()Reverses the order of characters in this builder. | ||
override | SetCharAt(int, char)Sets the character at the index. | |
override | SetLength(int)Sets the current length to a new value. | |
SubSequence(int, int)Documentation for this section has not yet been entered. | ||
override | SubSequenceFormatted(int, int)Documentation for this section has not yet been entered. | |
override | Substring(int)Returns the String value of the subsequence from the start index to the current end. | |
override | Substring(int, int)Returns the String value of the subsequence from the start index to the end index. | |
override | ToString()Returns the contents of this builder. | |
override | TrimToSize()Trims off any extra capacity beyond the current length. |