MCPcopy Index your code
hub / github.com/processing/processing / setLong

Method setLong

core/src/processing/data/JSONObject.java:1199–1202  ·  view source on GitHub ↗

Put a key/long pair in the JSONObject. @param key A key string. @param value A long which is the value. @return this. @throws RuntimeException If the key is null.

(String key, long value)

Source from the content-addressed store, hash-verified

1197 * @throws RuntimeException If the key is null.
1198 */
1199 public JSONObject setLong(String key, long value) {
1200 this.put(key, Long.valueOf(value));
1201 return this;
1202 }
1203
1204 /**
1205 * @webref jsonobject:method

Callers

nothing calls this directly

Calls 1

putMethod · 0.95

Tested by

no test coverage detected