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

Method opt

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

Get an optional value associated with a key. @param key A key string. @return An object which is the value, or null if there is no value.

(String key)

Source from the content-addressed store, hash-verified

1007 * @return An object which is the value, or null if there is no value.
1008 */
1009 private Object opt(String key) {
1010 return key == null ? null : this.map.get(key);
1011 }
1012
1013
1014// /**

Callers 4

getMethod · 0.95
getStringMethod · 0.95
isNullMethod · 0.95
putOnceMethod · 0.95

Calls 1

getMethod · 0.65

Tested by

no test coverage detected