Appends a subsequence of the specified character sequence value to this Appendable and returns this instance.
Parameters
value - the character sequence from which a subsequence is appended. If value is null,
then characters are appended as if value contained the four characters "null".
startIndex - the beginning (inclusive) of the subsequence to append.
endIndex - the end (exclusive) of the subsequence to append.
Appends the string representation of the specified object value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified boolean value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified int value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified long value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified float value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified double value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified byte value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.
Appends the string representation of the specified short value to this string builder and returns this instance.
The overall effect is exactly as if the value were converted to a string by the value.toString() method,
and then that string was appended to this string builder.