@param indentSize The number of space characters to use as an indent. 0=newlines but no spaces, -1=no indent at all.
(Object o, int indentSize)
| 263 | return new String(toJSON(o, indentSize), StandardCharsets.UTF_8); |
| 264 | } |
| 265 | |
| 266 | public static String toJSONString(Object o) { |
| 267 | return new String(toJSON(o), StandardCharsets.UTF_8); |
| 268 | } |
| 269 | |
| 270 | public static byte[] toUTF8(CharArr out) { |