public class StringBuilder
extends Object
GDK enhancements for StringBuilder.
| Type Params | Return Type | Name and description |
|---|---|---|
|
public StringBuilder |
append(GStringImpl gs)Append the GString to the StringBuilder using a more efficient approach than Java's default approach for a CharSequence. |
|
public int |
getLength()Provides a getLength alias for length for StringBuilder,
supporting assignment arithmetic operator expressions involving
the otherwise write-only length property. |
|
public StringBuilder |
leftShift(Object value)Overloads the left shift operator to provide syntactic sugar for appending to a StringBuilder. |
|
public StringBuilder |
leftShift(Object value)Overloads the left shift operator to provide an easy way to append multiple objects as string representations to a StringBuilder. |
|
public String |
plus(String value)Appends a String to this StringBuilder. |
|
public void |
putAt(EmptyRange range, Object value)Supports the range subscript operator for StringBuilder. |
|
public void |
putAt(IntRange range, Object value)Supports the range subscript operator for StringBuilder. |
| Methods inherited from class | Name |
|---|---|
class Object |
addShutdownHook, any, any, asBoolean, asType, collect, collect, collect, dump, each, eachMatch, eachMatch, eachWithIndex, every, every, find, find, findAll, findAll, findIndexOf, findIndexOf, findIndexValues, findIndexValues, findLastIndexOf, findLastIndexOf, findResult, findResult, findResult, findResult, getAt, getMetaClass, getMetaPropertyValues, getProperties, grep, grep, hasProperty, identity, inject, inject, inspect, invokeMethod, is, isCase, isNotCase, iterator, metaClass, print, print, printf, printf, println, println, println, putAt, respondsTo, respondsTo, setMetaClass, sleep, sleep, split, sprintf, sprintf, stream, tap, toString, use, use, use, with, with, withCloseable, withCloseable, withMethodClosure, withStream, withStream, withTraits |
Append the GString to the StringBuilder using a more efficient approach than Java's default approach for a CharSequence.
gs - a GStringImpl Provides a getLength alias for length for StringBuilder,
supporting assignment arithmetic operator expressions involving
the otherwise write-only length property.
def sb = new StringBuilder()
sb << 'foobar'
sb.length -= 3
assert sb.toString() == 'foo'
Overloads the left shift operator to provide syntactic sugar for appending to a StringBuilder.
value - an ObjectOverloads the left shift operator to provide an easy way to append multiple objects as string representations to a StringBuilder.
value - a value to appendAppends a String to this StringBuilder.
value - a StringSupports the range subscript operator for StringBuilder.
range - a Rangevalue - the object that's toString() will be inserted