Interface
StringBuilder
access this type via:
data.StringBuilder
(provides, requires or uses)
This is a simple utility interface to help build a string in multiple parts.
Functions
void add(char str[])
char[] get()
void add(char str[])
Add a new string to the end of the current string.
str
The string to be appended.
char[] get()
Get the total string constructed so far, as a single character array.
returns:
The string constructed so far.