Javolution 6.0.0 java
|
Public Member Functions | |
TextBuilder () | |
TextBuilder (String str) | |
TextBuilder (int capacity) | |
final int | length () |
final char | charAt (int index) |
final void | getChars (int srcBegin, int srcEnd, char[] dst, int dstBegin) |
final void | setCharAt (int index, char c) |
final void | setLength (int newLength) |
final void | setLength (int newLength, char fillChar) |
final java.lang.CharSequence | subSequence (int start, int end) |
final TextBuilder | append (char c) |
final TextBuilder | append (Object obj) |
final TextBuilder | append (CharSequence csq) |
final TextBuilder | append (CharSequence csq, int start, int end) |
final TextBuilder | append (String str) |
final TextBuilder | append (String str, int start, int end) |
final TextBuilder | append (Text txt) |
final TextBuilder | append (Text txt, int start, int end) |
final TextBuilder | append (char chars[]) |
final TextBuilder | append (char chars[], int offset, int length) |
final TextBuilder | append (boolean b) |
final TextBuilder | append (int i) |
final TextBuilder | append (int i, int radix) |
final TextBuilder | append (long l) |
final TextBuilder | append (long l, int radix) |
final TextBuilder | append (float f) |
final TextBuilder | append (double d) |
final TextBuilder | append (double d, int digits, boolean scientific, boolean showZero) |
final TextBuilder | insert (int index, java.lang.CharSequence csq) |
final TextBuilder | clear () |
final TextBuilder | delete (int start, int end) |
final TextBuilder | reverse () |
final Text | toText () |
final String | toString () |
final CharArray | toCharArray () |
final int | hashCode () |
final boolean | equals (Object obj) |
final boolean | contentEquals (java.lang.CharSequence csq) |
Private Member Functions | |
void | appendPositive (int l1, int radix) |
void | appendPositive (long l1, int radix) |
void | appendFraction (long l, int digits, boolean showZero) |
String | toLargeString () |
void | increaseCapacity () |
Private Attributes | |
char[] | _low = new char[C0] |
char[][] | _high = new char[1][] |
int | _length |
int | _capacity = C0 |
Static Private Attributes | |
static final long | serialVersionUID = 0x600L |
static final int | B0 = 5 |
static final int | C0 = 1 << B0 |
static final int | B1 = 10 |
static final int | C1 = 1 << B1 |
static final int | M1 = C1 - 1 |
static final char[] | DIGIT_TO_CHAR |
static final long[] | POW10_LONG |
An Appendable text whose capacity expands gently without incurring expensive resize/copy operations ever.
This class is not intended for large documents manipulations which should be performed with the Text class directly (O(Log(n))
insertion and deletion capabilities).
The textual format of any appended object is retrieved from the current TextContext.
Definition at line 29 of file TextBuilder.java.
javolution.text.TextBuilder.TextBuilder | ( | ) |
Creates a text builder of small initial capacity.
Definition at line 57 of file TextBuilder.java.
References javolution.text.TextBuilder._high, and javolution.text.TextBuilder._low.
Referenced by javolution.text.TextBuilder.equals().
javolution.text.TextBuilder.TextBuilder | ( | String | str | ) |
Creates a text builder holding the specified String
(convenience method).
str | the initial string content of this text builder. |
Definition at line 67 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
javolution.text.TextBuilder.TextBuilder | ( | int | capacity | ) |
Creates a text builder of specified initial capacity. Unless the text length exceeds the specified capacity, operations on this text builder will not allocate memory.
capacity | the initial capacity. |
Definition at line 79 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, and javolution.text.TextBuilder.increaseCapacity().
final TextBuilder javolution.text.TextBuilder.append | ( | boolean | b | ) |
Appends the textual representation of the specified boolean
argument.
b | the boolean to format. |
this
Definition at line 396 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | char | c | ) |
Appends the specified character.
c | the character to append. |
this
Definition at line 202 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.B1, javolution.text.TextBuilder.increaseCapacity(), and javolution.text.TextBuilder.M1.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendFraction(), javolution.text.TextBuilder.appendPositive(), javolution.text.TypeFormat.format(), javolution.io.Struct.UTF8String.get(), javolution.xml.internal.stream.XMLStreamWriterImpl.getRepairedPrefix(), javolution.context.internal.LogContextImpl.log(), javolution.test.Perfometer< T >.print(), javolution.xml.XMLFormat< T >.OutputElement.setAttribute(), javolution.text.TextBuilder.setLength(), javolution.text.TextBuilder.TextBuilder(), javolution.text.CharSet.toString(), javolution.io.Struct.toString(), javolution.xml.QName.valueOf(), javolution.text.Text.valueOf(), javolution.xml.internal.stream.XMLStreamWriterImpl.writeNewElement(), and javolution.xml.XMLReferenceResolver.writeReference().
final TextBuilder javolution.text.TextBuilder.append | ( | char | chars[] | ) |
Appends the characters from the char array argument.
chars | the character array source. |
this
Definition at line 353 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | char | chars[], |
int | offset, | ||
int | length | ||
) |
Appends the characters from a subarray of the char array argument.
chars | the character array source. |
offset | the index of the first character to append. |
length | the number of character to append. |
this
IndexOutOfBoundsException | if (offset < 0) || (length < 0) || ((offset + length) > chars.length) |
Definition at line 368 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.B1, javolution.text.TextBuilder.C1, javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.length(), javolution.text.TextBuilder.M1, and javolution.lang.MathLib.min().
final TextBuilder javolution.text.TextBuilder.append | ( | CharSequence | csq | ) |
Appends the specified character sequence. If the specified character sequence is null
this method is equivalent to append("null")
.
csq | the character sequence to append or null . |
this
Definition at line 230 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | CharSequence | csq, |
int | start, | ||
int | end | ||
) |
Appends a subsequence of the specified character sequence. If the specified character sequence is null
this method is equivalent to append("null")
.
csq | the character sequence to append or null . |
start | the index of the first character to append. |
end | the index after the last character to append. |
this
IndexOutOfBoundsException | if (start < 0) || (end < 0) || (start > end) || (end > csq.length()) |
Definition at line 246 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | double | d | ) |
Appends the textual representation of the specified double
; the number of digits is 17 or 16 when the 16 digits representation can be parsed back to the same double
(mimic the standard library formatting).
d | the double to format. |
append(d, -1, (MathLib.abs(d) >= 1E7) || (MathLib.abs(d) < 0.001), false)
Definition at line 572 of file TextBuilder.java.
References javolution.lang.MathLib.abs(), and javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | double | d, |
int | digits, | ||
boolean | scientific, | ||
boolean | showZero | ||
) |
Appends the textual representation of the specified double
according to the specified formatting arguments.
d | the double value. |
digits | the number of significative digits (excludes exponent) or -1 to mimic the standard library (16 or 17 digits). |
scientific | true to forces the use of the scientific notation (e.g. 1.23E3 ); false otherwise. |
showZero | true if trailing fractional zeros are represented; false otherwise. |
TypeFormat.format(d, digits, scientific, showZero, this)
IllegalArgumentException | if (digits > 19) ) |
Definition at line 592 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendFraction(), javolution.lang.MathLib.floorLog10(), javolution.text.TextBuilder.POW10_LONG, javolution.lang.MathLib.toDoublePow10(), and javolution.lang.MathLib.toLongPow10().
final TextBuilder javolution.text.TextBuilder.append | ( | float | f | ) |
Appends the textual representation of the specified float
.
f | the float to format. |
append(f, 10, (abs(f) >= 1E7) || (abs(f) < 0.001), false)
Definition at line 557 of file TextBuilder.java.
References javolution.lang.MathLib.abs(), and javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | int | i | ) |
Appends the decimal representation of the specified int
argument.
i | the int to format. |
this
Definition at line 407 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.append(), javolution.text.TextBuilder.B1, javolution.lang.MathLib.digitLength(), javolution.text.TextBuilder.increaseCapacity(), and javolution.text.TextBuilder.M1.
final TextBuilder javolution.text.TextBuilder.append | ( | int | i, |
int | radix | ||
) |
Appends the radix representation of the specified int
argument.
i | the int to format. |
radix | the radix (e.g. 16 for hexadecimal). |
this
Definition at line 437 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendPositive(), and javolution.text.TextBuilder.DIGIT_TO_CHAR.
final TextBuilder javolution.text.TextBuilder.append | ( | long | l | ) |
Appends the decimal representation of the specified long
argument.
l | the long to format. |
this
Definition at line 487 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), and javolution.lang.MathLib.digitLength().
final TextBuilder javolution.text.TextBuilder.append | ( | long | l, |
int | radix | ||
) |
Appends the radix representation of the specified long
argument.
l | the long to format. |
radix | the radix (e.g. 16 for hexadecimal). |
this
Definition at line 513 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendPositive(), and javolution.text.TextBuilder.DIGIT_TO_CHAR.
final TextBuilder javolution.text.TextBuilder.append | ( | Object | obj | ) |
Appends the textual representation of the specified object. This method is equivalent to
Definition at line 215 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.text.TextFormat< T >.format(), and javolution.text.TextContext.getFormat().
final TextBuilder javolution.text.TextBuilder.append | ( | String | str | ) |
Appends the specified string to this text builder. If the specified string is null
this method is equivalent to append("null")
.
str | the string to append or null . |
this
Definition at line 266 of file TextBuilder.java.
References javolution.text.TextBuilder.append().
final TextBuilder javolution.text.TextBuilder.append | ( | String | str, |
int | start, | ||
int | end | ||
) |
Appends a subsequence of the specified string. If the specified character sequence is null
this method is equivalent to append("null")
.
str | the string to append or null . |
start | the index of the first character to append. |
end | the index after the last character to append. |
this
IndexOutOfBoundsException | if (start < 0) || (end < 0) || (start > end) || (end > str.length()) |
Definition at line 282 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.append(), javolution.text.TextBuilder.B1, javolution.text.TextBuilder.C1, javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.M1, and javolution.lang.MathLib.min().
final TextBuilder javolution.text.TextBuilder.append | ( | Text | txt | ) |
Appends the specified text to this text builder. If the specified text is null
this method is equivalent to append("null")
.
txt | the text to append or null . |
this
Definition at line 311 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), and javolution.text.Text.length().
final TextBuilder javolution.text.TextBuilder.append | ( | Text | txt, |
int | start, | ||
int | end | ||
) |
Appends a subsequence of the specified text. If the specified character sequence is null
this method is equivalent to append("null")
.
txt | the text to append or null . |
start | the index of the first character to append. |
end | the index after the last character to append. |
this
IndexOutOfBoundsException | if (start < 0) || (end < 0) || (start > end) || (end > txt.length()) |
Definition at line 327 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.append(), javolution.text.TextBuilder.B1, javolution.text.TextBuilder.C1, javolution.text.Text.getChars(), javolution.text.TextBuilder.increaseCapacity(), javolution.text.Text.length(), javolution.text.TextBuilder.M1, and javolution.lang.MathLib.min().
|
private |
Definition at line 664 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.lang.MathLib.digitLength(), and javolution.text.TextBuilder.length().
Referenced by javolution.text.TextBuilder.append().
|
private |
Definition at line 454 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), and javolution.text.TextBuilder.DIGIT_TO_CHAR.
Referenced by javolution.text.TextBuilder.append(), and javolution.text.TextBuilder.appendPositive().
|
private |
Definition at line 530 of file TextBuilder.java.
References javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendPositive(), and javolution.text.TextBuilder.DIGIT_TO_CHAR.
final char javolution.text.TextBuilder.charAt | ( | int | index | ) |
Returns the character at the specified index.
index | the index of the character. |
IndexOutOfBoundsException | if (index < 0) || (index >= this.length()) . |
Definition at line 103 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder.B1, and javolution.text.TextBuilder.M1.
Referenced by javolution.text.TextBuilder.delete(), javolution.text.TextBuilder.equals(), javolution.text.TextBuilder.hashCode(), javolution.text.TextBuilder.insert(), and javolution.text.TextBuilder.reverse().
final TextBuilder javolution.text.TextBuilder.clear | ( | ) |
Removes all the characters of this text builder (equivalent to this.delete(start, this.length())
).
this.delete(0, this.length())
Definition at line 725 of file TextBuilder.java.
References javolution.text.TextBuilder._length.
Referenced by javolution.xml.internal.stream.XMLStreamWriterImpl.getRepairedPrefix(), javolution.xml.ws.WebServiceClient.invoke(), javolution.xml.XMLFormat< T >.OutputElement.setAttribute(), javolution.xml.internal.stream.XMLStreamWriterImpl.writeNewElement(), and javolution.xml.XMLReferenceResolver.writeReference().
final boolean javolution.text.TextBuilder.contentEquals | ( | java.lang.CharSequence | csq | ) |
Indicates if this text builder has the same character content as the specified character sequence.
csq | the character sequence to compare with. |
true
if the specified character sequence has the same character content as this text; false
otherwise. Definition at line 856 of file TextBuilder.java.
References javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.B1, and javolution.text.TextBuilder.M1.
final TextBuilder javolution.text.TextBuilder.delete | ( | int | start, |
int | end | ||
) |
Removes the characters between the specified indices.
start | the beginning index, inclusive. |
end | the ending index, exclusive. |
this
IndexOutOfBoundsException | if (start < 0) || (end < 0) || (start > end) || (end > this.length()) |
Definition at line 739 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder.charAt(), javolution.text.TextBuilder.length(), and javolution.text.TextBuilder.setCharAt().
final boolean javolution.text.TextBuilder.equals | ( | Object | obj | ) |
Compares this text builder against the specified object for equality. Returns true
if the specified object is a text builder having the same character content.
obj | the object to compare with or null . |
true
if that is a text builder with the same character content as this text; false
otherwise. Definition at line 833 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder.charAt(), and javolution.text.TextBuilder.TextBuilder().
final void javolution.text.TextBuilder.getChars | ( | int | srcBegin, |
int | srcEnd, | ||
char[] | dst, | ||
int | dstBegin | ||
) |
Copies the character from this text builder into the destination character array.
srcBegin | this text start index. |
srcEnd | this text end index (not included). |
dst | the destination array to copy the data into. |
dstBegin | the offset into the destination array. |
IndexOutOfBoundsException | if (srcBegin < 0) || (dstBegin < 0) || (srcBegin > srcEnd) || (srcEnd > this.length()) || ((dstBegin + srcEnd - srcBegin) > dst.length) |
Definition at line 121 of file TextBuilder.java.
References javolution.text.TextBuilder._high, javolution.text.TextBuilder.B1, javolution.text.TextBuilder.C1, javolution.text.TextBuilder.length(), javolution.text.TextBuilder.M1, and javolution.lang.MathLib.min().
Referenced by javolution.io.CharSequenceReader.read(), javolution.text.TextBuilder.toCharArray(), javolution.text.TextBuilder.toLargeString(), and javolution.text.Text.valueOf().
final int javolution.text.TextBuilder.hashCode | ( | ) |
Returns the hash code for this text builder.
Definition at line 815 of file TextBuilder.java.
References javolution.text.TextBuilder._length, and javolution.text.TextBuilder.charAt().
|
private |
Increases this text builder capacity.
Definition at line 870 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder._low, javolution.text.TextBuilder.B1, and javolution.text.TextBuilder.C1.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.insert(), and javolution.text.TextBuilder.TextBuilder().
final TextBuilder javolution.text.TextBuilder.insert | ( | int | index, |
java.lang.CharSequence | csq | ||
) |
Inserts the specified character sequence at the specified location.
index | the insertion position. |
csq | the character sequence being inserted. |
this
IndexOutOfBoundsException | if (index < 0) || (index > this.length()) |
Definition at line 701 of file TextBuilder.java.
References javolution.text.TextBuilder._capacity, javolution.text.TextBuilder._length, javolution.text.TextBuilder.charAt(), javolution.text.TextBuilder.increaseCapacity(), and javolution.text.TextBuilder.setCharAt().
final int javolution.text.TextBuilder.length | ( | ) |
Returns the length (character count) of this text builder.
Definition at line 91 of file TextBuilder.java.
References javolution.text.TextBuilder._length.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.appendFraction(), javolution.text.TextBuilder.delete(), javolution.text.TextBuilder.getChars(), javolution.xml.ws.WebServiceClient.invoke(), javolution.test.Perfometer< T >.print(), javolution.xml.internal.stream.XMLStreamWriterImpl.resizeElemStack(), javolution.text.CharSet.toString(), javolution.xml.internal.stream.XMLStreamWriterImpl.writeNewElement(), and javolution.xml.internal.stream.XMLStreamWriterImpl.XMLStreamWriterImpl().
final TextBuilder javolution.text.TextBuilder.reverse | ( | ) |
Reverses this character sequence.
this
Definition at line 754 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder.charAt(), and javolution.text.TextBuilder.setCharAt().
final void javolution.text.TextBuilder.setCharAt | ( | int | index, |
char | c | ||
) |
Sets the character at the specified position.
index | the index of the character to modify. |
c | the new character. |
IndexOutOfBoundsException | if (index < 0) || (index >= this.length()) |
Definition at line 143 of file TextBuilder.java.
References javolution.text.TextBuilder._high, javolution.text.TextBuilder._length, javolution.text.TextBuilder.B1, and javolution.text.TextBuilder.M1.
Referenced by javolution.text.TextBuilder.delete(), javolution.text.TextBuilder.insert(), and javolution.text.TextBuilder.reverse().
final void javolution.text.TextBuilder.setLength | ( | int | newLength | ) |
Convenience method equivalent to setLength(newLength, '').
newLength | the new length of this builder. |
IndexOutOfBoundsException | if (newLength < 0) |
Definition at line 156 of file TextBuilder.java.
final void javolution.text.TextBuilder.setLength | ( | int | newLength, |
char | fillChar | ||
) |
Sets the length of this character builder. If the length is greater than the current length; the specified character is inserted.
newLength | the new length of this builder. |
fillChar | the character to be appended if required. |
IndexOutOfBoundsException | if (newLength < 0) |
Definition at line 169 of file TextBuilder.java.
References javolution.text.TextBuilder._length, and javolution.text.TextBuilder.append().
final java.lang.CharSequence javolution.text.TextBuilder.subSequence | ( | int | start, |
int | end | ||
) |
Returns a java.lang.CharSequence corresponding to the character sequence between the specified indexes.
start | the index of the first character inclusive. |
end | the index of the last character exclusive. |
IndexOutOfBoundsException | if (start < 0) || (end < 0) || (start > end) || (end > this.length()) |
Definition at line 190 of file TextBuilder.java.
References javolution.text.TextBuilder._length, and javolution.text.Text.valueOf().
final CharArray javolution.text.TextBuilder.toCharArray | ( | ) |
Returns the CharArray
representation of this TextBuilder.
Definition at line 796 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder._low, javolution.text.TextBuilder.C1, javolution.text.TextBuilder.getChars(), and javolution.text.CharArray.setArray().
|
private |
Definition at line 784 of file TextBuilder.java.
References javolution.text.TextBuilder._length, and javolution.text.TextBuilder.getChars().
Referenced by javolution.text.TextBuilder.toString().
final String javolution.text.TextBuilder.toString | ( | ) |
Returns the String
representation of this TextBuilder.
java.lang.String
for this text builder. Definition at line 780 of file TextBuilder.java.
References javolution.text.TextBuilder._length, javolution.text.TextBuilder._low, javolution.text.TextBuilder.C1, and javolution.text.TextBuilder.toLargeString().
Referenced by javolution.io.Struct.UTF8String.get(), javolution.context.internal.LogContextImpl.log(), javolution.text.CharSet.toString(), and javolution.io.Struct.toString().
final Text javolution.text.TextBuilder.toText | ( | ) |
Returns the Text corresponding to this TextBuilder.
Definition at line 769 of file TextBuilder.java.
References javolution.text.TextBuilder._length, and javolution.text.Text.valueOf().
Referenced by javolution.text.Text.valueOf().
|
private |
Holds current capacity.
Definition at line 52 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.insert(), and javolution.text.TextBuilder.TextBuilder().
|
private |
Definition at line 42 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.contentEquals(), javolution.text.TextBuilder.getChars(), javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.setCharAt(), and javolution.text.TextBuilder.TextBuilder().
|
private |
Holds the current length.
Definition at line 47 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.charAt(), javolution.text.TextBuilder.clear(), javolution.text.TextBuilder.contentEquals(), javolution.text.TextBuilder.delete(), javolution.text.TextBuilder.equals(), javolution.text.TextBuilder.hashCode(), javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.insert(), javolution.text.TextBuilder.length(), javolution.text.TextBuilder.reverse(), javolution.text.TextBuilder.setCharAt(), javolution.text.TextBuilder.setLength(), javolution.text.TextBuilder.subSequence(), javolution.text.TextBuilder.toCharArray(), javolution.text.TextBuilder.toLargeString(), javolution.text.TextBuilder.toString(), and javolution.text.TextBuilder.toText().
|
private |
Definition at line 40 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.TextBuilder(), javolution.text.TextBuilder.toCharArray(), and javolution.text.TextBuilder.toString().
|
staticprivate |
Definition at line 34 of file TextBuilder.java.
|
staticprivate |
Definition at line 36 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.charAt(), javolution.text.TextBuilder.contentEquals(), javolution.text.TextBuilder.getChars(), javolution.text.TextBuilder.increaseCapacity(), and javolution.text.TextBuilder.setCharAt().
|
staticprivate |
Definition at line 35 of file TextBuilder.java.
|
staticprivate |
Definition at line 37 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.getChars(), javolution.text.TextBuilder.increaseCapacity(), javolution.text.TextBuilder.toCharArray(), and javolution.text.TextBuilder.toString().
|
staticprivate |
Definition at line 475 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), and javolution.text.TextBuilder.appendPositive().
|
staticprivate |
Definition at line 38 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append(), javolution.text.TextBuilder.charAt(), javolution.text.TextBuilder.contentEquals(), javolution.text.TextBuilder.getChars(), and javolution.text.TextBuilder.setCharAt().
|
staticprivate |
Definition at line 686 of file TextBuilder.java.
Referenced by javolution.text.TextBuilder.append().
|
staticprivate |
Definition at line 31 of file TextBuilder.java.