MCPcopy Create free account
hub / github.com/Var3D/var3dframe / put

Method put

core/src/core/java/var3d/net/center/json/JSONObject.java:203–206  ·  view source on GitHub ↗

Maps name to value, clobbering any existing name/value mapping with the same name. @return this object.

(String name, boolean value)

Source from the content-addressed store, hash-verified

201 * @return this object.
202 */
203 public JSONObject put(String name, boolean value) throws JSONException {
204 nameValuePairs.put(checkName(name), value);
205 return this;
206 }
207
208 /**
209 * Maps {@code name} to {@code value}, clobbering any existing name/value

Callers 8

readObjectMethod · 0.95
getItMethod · 0.95
putMethod · 0.95
editMethod · 0.95
toJSONObjectMethod · 0.95
putOptMethod · 0.95
accumulateMethod · 0.95
JSONObjectMethod · 0.45

Calls 3

checkNameMethod · 0.95
checkDoubleMethod · 0.95
removeMethod · 0.45

Tested by

no test coverage detected