Java com.badlogic.gdx.utils StringBuilder fields, constructors, methods, implement or subclass

Example usage for Java com.badlogic.gdx.utils StringBuilder fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.badlogic.gdx.utils StringBuilder.

The text is from its open source code.

Constructor

StringBuilder(int capacity)
Constructs an instance with the specified capacity.
StringBuilder(CharSequence seq)
Constructs an instance that's initialized with the contents of the specified CharSequence .
StringBuilder(StringBuilder builder)
StringBuilder(String string)
Constructs an instance that's initialized with the contents of the specified String .
StringBuilder()
Constructs an instance with an initial capacity of 16 .

Method

StringBuilderappend(boolean b)
Appends the string representation of the specified boolean value.
StringBuilderappend(char c)
Appends the string representation of the specified char value.
StringBuilderappend(int value)
Appends the string representation of the specified int value.
StringBuilderappend(long value)
Appends the string representation of the specified long value.
StringBuilderappend(float f)
Appends the string representation of the specified float value.
StringBuilderappend(double d)
Appends the string representation of the specified double value.
StringBuilderappend(Object obj)
Appends the string representation of the specified Object .
StringBuilderappend(String str)
Appends the contents of the specified string.
StringBuilderappend(char[] ch)
Appends the string representation of the specified char[] .
StringBuilderappend(CharSequence csq)
Appends the string representation of the specified CharSequence .
StringBuilderappend(StringBuilder builder)
voidsetLength(int newLength)
Sets the current length to a new value.
StringtoString()
Returns the current String representation.