|
void | append (StringBuilder buf, int indent, Object o) |
|
void org.apache.calcite.util.EscapedStringJsonBuilder.append |
( |
StringBuilder |
buf, |
|
|
int |
indent, |
|
|
Object |
o |
|
) |
| |
|
inline |
Definition at line 27 of file EscapedStringJsonBuilder.java.
28 if (o instanceof String) {
29 buf.append(
'"').
append(StringEscapeUtils.escapeJson((String) o)).
append(
'"');
30 }
else if ((o == null) || (o instanceof Map) || (o instanceof List)
31 || (o instanceof Number) || (o instanceof Boolean)) {
32 super.append(buf, indent, o);
void append(StringBuilder buf, int indent, Object o)
The documentation for this class was generated from the following file: