/** * Returns an <a href="#unmodifiable">unmodifiable Map</a> containing the entries * of the given Map. The given Map must not be null, and it must not contain any * null keys or values. If the given Map is subsequently modified, the returned * Map will not reflect such modifications. * * @implNote * If the given Map is an <a href="#unmodifiable">unmodifiable Map</a>, * calling copyOf will generally not create a copy. * * @param <K> the {@code Map}'s key type * @param <V> the {@code Map}'s value type * @param map a {@code Map} from which entries are drawn, must be non-null * @return a {@code Map} containing the entries of the given {@code Map} * @throws NullPointerException if map is null, or if it contains any null keys or values * @since 10 */ @SuppressWarnings({"rawtypes","unchecked"}) static <K, V> Map<K, V> copyOf(Map<? extends K, ? extends V> map) { if (map instanceof ImmutableCollections.AbstractImmutableMap) { return (Map<K,V>)map; } else { return (Map<K,V>)Map.ofEntries(map.entrySet().toArray(newEntry[0])); } }
/** * Returns an unmodifiable map containing keys and values extracted from the given entries. * The entries themselves are not stored in the map. * See <a href="#unmodifiable">Unmodifiable Maps</a> for details. * * @apiNote * It is convenient to create the map entries using the {@link Map#entry Map.entry()} method. * For example, * * <pre>{@code * import static java.util.Map.entry; * * Map<Integer,String> map = Map.ofEntries( * entry(1, "a"), * entry(2, "b"), * entry(3, "c"), * ... * entry(26, "z")); * }</pre> * * @param <K> the {@code Map}'s key type * @param <V> the {@code Map}'s value type * @param entries {@code Map.Entry}s containing the keys and values from which the map is populated * @return a {@code Map} containing the specified mappings * @throws IllegalArgumentException if there are any duplicate keys * @throws NullPointerException if any entry, key, or value is {@code null}, or if * the {@code entries} array is {@code null} * * @see Map#entry Map.entry() * @since 9 */ @SafeVarargs @SuppressWarnings("varargs") static <K, V> Map<K, V> ofEntries(Entry<? extends K, ? extends V>... entries) { if (entries.length == 0) { // implicit null check of entries array @SuppressWarnings("unchecked") varmap= (Map<K,V>) ImmutableCollections.EMPTY_MAP; return map; } elseif (entries.length == 1) { // implicit null check of the array slot returnnewImmutableCollections.Map1<>(entries[0].getKey(), entries[0].getValue()); } else { Object[] kva = newObject[entries.length << 1]; inta=0; for (Entry<? extendsK, ? extendsV> entry : entries) { // implicit null checks of each array slot kva[a++] = entry.getKey(); kva[a++] = entry.getValue(); } returnnewImmutableCollections.MapN<>(kva); } }