Stringbuilder API Flashcards

1
Q

What do the append(…) methods do?

A
StringBuilder	append(boolean b)
Appends the string representation of the boolean argument to the sequence.
StringBuilder	append(char c)
Appends the string representation of the char argument to this sequence.
StringBuilder	append(char[] str)
Appends the string representation of the char array argument to this sequence.
StringBuilder	append(char[] str, int offset, int len)
Appends the string representation of a subarray of the char array argument to this sequence.
StringBuilder	append(CharSequence s)
Appends the specified character sequence to this Appendable.
StringBuilder	append(CharSequence s, int start, int end)
Appends a subsequence of the specified CharSequence to this sequence.
StringBuilder	append(double d)
Appends the string representation of the double argument to this sequence.
StringBuilder	append(float f)
Appends the string representation of the float argument to this sequence.
StringBuilder	append(int i)
Appends the string representation of the int argument to this sequence.
StringBuilder	append(long lng)
Appends the string representation of the long argument to this sequence.
StringBuilder	append(Object obj)
Appends the string representation of the Object argument.
StringBuilder	append(String str)
Appends the specified string to this character sequence.
StringBuilder	append(StringBuffer sb)
Appends the specified StringBuffer to this sequence.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q
What do
appendCodePoint(i)
codePointAt(i)
codePointBefore(i)
codePointCount(i,j)
do?
A

appendCodePoint(int codePoint)
Appends the string representation of the codePoint argument to this sequence.

int	codePointAt(int index)
Returns the character (Unicode code point) at the specified index.
int	codePointBefore(int index)
Returns the character (Unicode code point) before the specified index.
int	codePointCount(int beginIndex, int endIndex)
Returns the number of Unicode code points in the specified text range of this sequence.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does capacity() do?

A

capacity()

Returns the current capacity.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What does charAt(i) do?

A

charAt(int index)

Returns the char value in this sequence at the specified index.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What do delete(i, j), deleteCharAt(i) do?

A
StringBuilder	delete(int start, int end)
Removes the characters in a substring of this sequence.
StringBuilder	deleteCharAt(int index)
Removes the char at the specified position in this sequence.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What does ensureCapacity(i) do?

A
void	ensureCapacity(int minimumCapacity)
Ensures that the capacity is at least equal to the specified minimum.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What does getChars(i, j, c[], k) do?

A
void	getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
Characters are copied from this sequence into the destination character array destination starting at dstbegin.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What do indexOf(s), indexOf(s, i) do?

A
int	indexOf(String str)
Returns the index within this string of the first occurrence of the specified substring.
int	indexOf(String str, int fromIndex)
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What do insert(…) do?

A
StringBuilder	insert(int offset, boolean b)
Inserts the string representation of the boolean argument into this sequence.
StringBuilder	insert(int offset, char c)
Inserts the string representation of the char argument into this sequence.
StringBuilder	insert(int offset, char[] str)
Inserts the string representation of the char array argument into this sequence.
StringBuilder	insert(int index, char[] str, int offset, int len)
Inserts the string representation of a subarray of the str array argument into this sequence.
StringBuilder	insert(int dstOffset, CharSequence s)
Inserts the specified CharSequence into this sequence.
StringBuilder	insert(int dstOffset, CharSequence s, int start, int end)
Inserts a subsequence of the specified CharSequence into this sequence.
StringBuilder	insert(int offset, double d)
Inserts the string representation of the double argument into this sequence.
StringBuilder	insert(int offset, float f)
Inserts the string representation of the float argument into this sequence.
StringBuilder	insert(int offset, int i)
Inserts the string representation of the second int argument into this sequence.
StringBuilder	insert(int offset, long l)
Inserts the string representation of the long argument into this sequence.
StringBuilder	insert(int offset, Object obj)
Inserts the string representation of the Object argument into this character sequence.
StringBuilder	insert(int offset, String str)
Inserts the string into this character sequence.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What do lastIndexOf(s), lastIndexOf(s,i) do?

A
int	lastIndexOf(String str)
Returns the index within this string of the rightmost occurrence of the specified substring.
int	lastIndexOf(String str, int fromIndex)
Returns the index within this string of the last occurrence of the specified substring.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What does length() do?

A

length()

Returns the length (character count).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What does offsetByCodePoints(i,j) do?

A
int	offsetByCodePoints(int index, int codePointOffset)
Returns the index within this sequence that is offset from the given index by codePointOffset code points.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What does replace(i, j, s) do?

A
StringBuilder	replace(int start, int end, String str)
Replaces the characters in a substring of this sequence with characters in the specified String.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What does reverse() do?

A

reverse()

Causes this character sequence to be replaced by the reverse of the sequence.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What does setCharAt(i, c) do?

A
void	setCharAt(int index, char ch)
The character at the specified index is set to ch.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What does setLength(i do?

A
void	setLength(int newLength)
Sets the length of the character sequence.
17
Q

What does subSequence(i,j) do?

A
CharSequence subSequence(int start, int end)
Returns a new character sequence that is a subsequence of this sequence.
18
Q

What do substring(i), substring(i,j) do?

A
String	substring(int start)
Returns a new String that contains a subsequence of characters currently contained in this character sequence.
String	substring(int start, int end)
Returns a new String that contains a subsequence of characters currently contained in this sequence.
19
Q

What does toString() do?

A

Returns a string representing the data in this sequence.

20
Q

What does trimToSize() do?

A

Attempts to reduce storage used for the character sequence.

21
Q

What methods are inherited from java.lang.Object?

A

clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

22
Q

What methods are inherited from java.lang.CharSequence?

A

charAt, length, subSequence