MCPcopy Index your code
hub / github.com/benfry/processing4 / get

Method get

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

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

(String key)

Source from the content-addressed store, hash-verified

379 * @webBrief Return a value for the specified key
380 */
381 public String get(String key) {
382 int index = index(key);
383 if (index == -1) return null;
384 return values[index];
385 }
386
387
388 public String get(String key, String alternate) {

Callers 8

GradientMethod · 0.95
renderImageMethod · 0.95
updateFlaggedMethod · 0.95
rewritePropertiesFileMethod · 0.95
isCompatibleMethod · 0.95
buildContribTreeMethod · 0.95
printCommandLineMethod · 0.95

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected