(Object obj)
| 1188 | } |
| 1189 | |
| 1190 | public static String json(Object obj) { |
| 1191 | try { |
| 1192 | return mapper.writeValueAsString(obj); |
| 1193 | } catch (JsonProcessingException e) { |
| 1194 | throw new RuntimeException("Failed to serialize JSON", e); |
| 1195 | } |
| 1196 | } |
| 1197 | |
| 1198 | public static Object mathAbs(Object val) { |
| 1199 | if (val == null) { |
no outgoing calls