|
Groovy JDK | |||||||||
| Method Summary | |
|---|---|
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(IntRange range, Object value)
Support the range subscript operator for StringBuffer treated as characters within the buffer |
void
|
putAt(EmptyRange range, Object value)
Support the range subscript operator for StringBuffer |
int
|
size()
Provide the standard Groovy size() method for StringBuffer
|
| Method Detail |
|---|
public StringBuffer leftShift(Object value)
value - a value to append.
public String plus(String value)
value - a String.
public void putAt(IntRange range, Object value)
range - a Range.
value - the object that's toString() will be inserted.
public void putAt(EmptyRange range, Object value)
range - a Range.
value - the object that's toString() will be inserted.
public int size()
size() method for StringBuffer.
|
Groovy JDK | |||||||||