fromJValue

Type: function
Returns a native JS representation of a JSON object from the given JValue, safetied in a try/catch.

Body

try {
    return JSON.parse(ListHelper.jValueToString(jv));
  } catch(e) {
    return undefined;
  }

Classpath

Children