MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / get

Method get

ij/src/main/java/ij/astro/types/MultiMap.java:40–42  ·  view source on GitHub ↗

Returns a list of values associated with the specified key. If the key does not exist, an empty list is returned. @param key the key whose associated values are to be returned @return a list of values associated with the key, or an empty list if the key does not exist

(K key)

Source from the content-addressed store, hash-verified

38 * @return a list of values associated with the key, or an empty list if the key does not exist
39 */
40 public List<V> get(K key) {
41 return map.getOrDefault(key, Collections.emptyList());
42 }
43
44 /**
45 * Removes a specific value associated with the specified key.

Callers 15

removeMethod · 0.45
containsMethod · 0.45
logMethod · 0.45
getLogMethod · 0.45
getCallerNameMethod · 0.45
addSwappableSectionMethod · 0.45
getPanelMethod · 0.45
getConstraintsMethod · 0.45
getXPosMethod · 0.45
addCheckboxMethod · 0.45
addCheckboxGroupMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected