(Object value)
| 567 | } |
| 568 | |
| 569 | public static String stringify(Object value) { |
| 570 | StringBuilder sb = new StringBuilder(); |
| 571 | writeValue(sb, value); |
| 572 | return sb.toString(); |
| 573 | } |
| 574 | |
| 575 | @SuppressWarnings("unchecked") |
| 576 | public static Map<String, Object> asObject(Object value) { |
no test coverage detected