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

Method get

core/src/processing/data/StringDict.java:370–374  ·  view source on GitHub ↗

Return a value for the specified key. @webref stringdict:method @brief Return a value for the specified key

(String key)

Source from the content-addressed store, hash-verified

368 * @brief Return a value for the specified key
369 */
370 public String get(String key) {
371 int index = index(key);
372 if (index == -1) return null;
373 return values[index];
374 }
375
376
377 public String get(String key, String alternate) {

Callers 6

GradientMethod · 0.95
handleMethod · 0.95
updateFlaggedMethod · 0.95
writePropertiesFileMethod · 0.95
buildContribTreeMethod · 0.95

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected