MCPcopy Index your code
hub / github.com/ccxt/ccxt / parseJson

Method parseJson

java/lib/src/main/java/io/github/ccxt/Helpers.java:197–200  ·  view source on GitHub ↗
(Object json)

Source from the content-addressed store, hash-verified

195
196 // In Java, wire up your preferred JSON lib and return Map/List accordingly.
197 public static Object parseJson(Object json) {
198 // placeholder: return the string itself (or plug in Jackson/Gson here)
199 return JsonHelper.deserialize((String) json);
200 }
201
202 public static boolean isTrue(Object value) {
203 if (value == null) return false;

Callers 15

parseJsonMethod · 0.95
parseOrderMethod · 0.95
fetchOrderMethod · 0.95
requestMethod · 0.95
parseDepositAddressMethod · 0.95
fetchDepositsMethod · 0.95
withdrawMethod · 0.95
handleErrorsMethod · 0.95

Calls 1

deserializeMethod · 0.95

Tested by

no test coverage detected