Method Summary |
|
public void | append(int x) Append an int. |
public void | append(boolean x) Append a boolean. |
public void | append(double x) Append a double. |
public void | append(String s) Append a String without escaping any delims in the String. |
public void | append(Class c) Append a Class (may be null). |
public void | appendProperties(Map props) Append a Map of properties. |
public void | appendQuoted(String s) Append a double quoted String escaping any embedded double quotes. |
public int | length() Get the number of characters in the buffer. |
public void | reset() Reset the list. |
public String | toString() Get the completed string. |