MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / put

Method put

vm/JavaAPI/src/java/util/AbstractMap.java:515–519  ·  view source on GitHub ↗

Maps the specified key to the specified value. @param key the key. @param value the value. @return the value of any previous mapping with the specified key or null if there was no mapping. @throws UnsupportedOperationException if adding to this m

(@SuppressWarnings("unused")
    K key, @SuppressWarnings("unused")
    V value)

Source from the content-addressed store, hash-verified

513 * support {@code null} keys or values.
514 */
515 public V put(@SuppressWarnings("unused")
516 K key, @SuppressWarnings("unused")
517 V value) {
518 throw new UnsupportedOperationException();
519 }
520
521 /**
522 * Copies every mapping in the specified map to this map.

Callers 1

putAllMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected