Return type | Name and parameters |
---|---|
StringBuffer
|
leftShift(Object value)
Overloads the left shift operator to provide an easy way to append multiple objects as string representations to a StringBuffer. |
String
|
plus(String value)
Appends a String to this StringBuffer. |
void
|
putAt(EmptyRange range, Object value)
Support the range subscript operator for StringBuffer. |
void
|
putAt(IntRange range, Object value)
Support the range subscript operator for StringBuffer. |
int
|
size()
Provide the standard Groovy size() method for StringBuffer .
|
Overloads the left shift operator to provide an easy way to append multiple objects as string representations to a StringBuffer.
value
- a value to append.Appends a String to this StringBuffer.
value
- a String.Support the range subscript operator for StringBuffer.
range
- a Range.value
- the object that's toString() will be inserted.Support the range subscript operator for StringBuffer. Index values are treated as characters within the buffer.
range
- a Range.value
- the object that's toString() will be inserted.Provide the standard Groovy size()
method for StringBuffer
.