Package | Description |
---|---|
com.badlogic.gdx.scenes.scene2d.ui | |
com.badlogic.gdx.utils |
Modifier and Type | Method and Description |
---|---|
StringBuilder |
Label.getText() |
Modifier and Type | Method and Description |
---|---|
StringBuilder |
StringBuilder.append(boolean b)
Appends the string representation of the specified
boolean value. |
StringBuilder |
StringBuilder.append(char c)
Appends the string representation of the specified
char value. |
StringBuilder |
StringBuilder.append(char[] ch)
Appends the string representation of the specified
char[] . |
StringBuilder |
StringBuilder.append(char[] str,
int offset,
int len)
Appends the string representation of the specified subset of the
char[] . |
StringBuilder |
StringBuilder.append(CharSequence csq)
Appends the string representation of the specified
CharSequence . |
StringBuilder |
StringBuilder.append(CharSequence csq,
int start,
int end)
Appends the string representation of the specified subsequence of the
CharSequence . |
StringBuilder |
StringBuilder.append(double d)
Appends the string representation of the specified
double value. |
StringBuilder |
StringBuilder.append(float f)
Appends the string representation of the specified
float value. |
StringBuilder |
StringBuilder.append(int value)
Appends the string representation of the specified
int value. |
StringBuilder |
StringBuilder.append(int value,
int minLength)
Appends the string representation of the specified
int value. |
StringBuilder |
StringBuilder.append(int value,
int minLength,
char prefix)
Appends the string representation of the specified
int value. |
StringBuilder |
StringBuilder.append(long value)
Appends the string representation of the specified
long value. |
StringBuilder |
StringBuilder.append(long value,
int minLength)
Appends the string representation of the specified
long value. |
StringBuilder |
StringBuilder.append(long value,
int minLength,
char prefix)
Appends the string representation of the specified
long value. |
StringBuilder |
StringBuilder.append(Object obj)
Appends the string representation of the specified
Object . |
StringBuilder |
StringBuilder.append(String str)
Appends the contents of the specified string.
|
StringBuilder |
StringBuilder.append(StringBuilder builder) |
StringBuilder |
StringBuilder.append(StringBuilder builder,
int start,
int end) |
StringBuilder |
StringBuilder.appendCodePoint(int codePoint)
Appends the encoded Unicode code point.
|
StringBuilder |
StringBuilder.appendLine(String str)
Appends the contents of the specified string, then create a new line.
|
StringBuilder |
StringBuilder.delete(int start,
int end)
Deletes a sequence of characters specified by
start and end . |
StringBuilder |
StringBuilder.deleteCharAt(int index)
Deletes the character at the specified index.
|
StringBuilder |
StringBuilder.insert(int offset,
boolean b)
Inserts the string representation of the specified
boolean value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
char c)
Inserts the string representation of the specified
char value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
char[] ch)
Inserts the string representation of the specified
char[] at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
char[] str,
int strOffset,
int strLen)
Inserts the string representation of the specified subsequence of the
char[] at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
CharSequence s)
Inserts the string representation of the specified
CharSequence at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
CharSequence s,
int start,
int end)
Inserts the string representation of the specified subsequence of the
CharSequence at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
double d)
Inserts the string representation of the specified
double value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
float f)
Inserts the string representation of the specified
float value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
int i)
Inserts the string representation of the specified
int value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
long l)
Inserts the string representation of the specified
long value at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
Object obj)
Inserts the string representation of the specified
Object at the specified offset . |
StringBuilder |
StringBuilder.insert(int offset,
String str)
Inserts the specified string at the specified
offset . |
StringBuilder |
StringBuilder.replace(char find,
String replace)
Replaces all instances of
find with replace . |
StringBuilder |
StringBuilder.replace(int start,
int end,
String str)
Replaces the specified subsequence in this builder with the specified string.
|
StringBuilder |
StringBuilder.replace(String find,
String replace)
Replaces all instances of
find with replace . |
StringBuilder |
StringBuilder.reverse()
Reverses the order of characters in this builder.
|
StringBuilder |
PerformanceCounters.toString(StringBuilder sb) |
StringBuilder |
PerformanceCounter.toString(StringBuilder sb)
Creates a string in the form of "name [time: value, load: value]"
|
Modifier and Type | Method and Description |
---|---|
StringBuilder |
StringBuilder.append(StringBuilder builder) |
StringBuilder |
StringBuilder.append(StringBuilder builder,
int start,
int end) |
boolean |
StringBuilder.equalsIgnoreCase(StringBuilder other) |
StringBuilder |
PerformanceCounters.toString(StringBuilder sb) |
StringBuilder |
PerformanceCounter.toString(StringBuilder sb)
Creates a string in the form of "name [time: value, load: value]"
|
Constructor and Description |
---|
StringBuilder(StringBuilder builder) |
Copyright © 2019. All rights reserved.