Class TStringBuilder
java.lang.Object
de.mirkosertic.bytecoder.classlib.java.lang.TStringBuilder
- All Implemented Interfaces:
CharSequence
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionappend
(boolean value) append
(byte value) append
(char value) append
(char[] data, int offset, int len) append
(double value) append
(float value) append
(int value) append
(long value) append
(short value) append
(CharSequence value, int a, int b) char
charAt
(int index) deleteCharAt
(int index) (package private) void
initializeWith
(int capacity) insert
(int index, char c) int
length()
reverse()
void
setCharAt
(int index, char c) (package private) void
setLength
(int size) subSequence
(int start, int end) toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.CharSequence
chars, codePoints, isEmpty
-
Constructor Details
-
TStringBuilder
public TStringBuilder() -
TStringBuilder
public TStringBuilder(int capacity) -
TStringBuilder
-
-
Method Details
-
initializeWith
void initializeWith(int capacity) -
append
-
append
-
append
-
append
-
append
-
append
-
append
-
append
-
append
-
append
-
append
-
append
-
reverse
-
setLength
void setLength(int size) -
toString
- Specified by:
toString
in interfaceCharSequence
- Overrides:
toString
in classObject
-
length
public int length()- Specified by:
length
in interfaceCharSequence
-
charAt
public char charAt(int index) - Specified by:
charAt
in interfaceCharSequence
-
subSequence
- Specified by:
subSequence
in interfaceCharSequence
-
deleteCharAt
-
setCharAt
public void setCharAt(int index, char c) -
insert
-