Java Map Copy copyMapButFailOnNull(Map entries)

Here you can find the source of copyMapButFailOnNull(Map entries)

Description

Copy each map entry to a new map but check that each key and value isn't null.

License

Apache License

Parameter

Parameter Description
entries entries to copy
K type of key
V type of value

Exception

Parameter Description
NullPointerException if a key or value is null

Return

cloned map

Declaration

public static <K, V> Map<K, V> copyMapButFailOnNull(Map<? extends K, ? extends V> entries) 

Method Source Code

//package com.java2s;
/*/*from www . j  ava  2  s.c  o m*/
 * Copyright Terracotta, Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.HashMap;
import java.util.Map;

public class Main {
    /**
     * Copy each map entry to a new map but check that each key and value isn't null. Throw
     * a {@code NullPointerException} if it's the case.
     *
     * @param entries entries to copy
     * @param <K> type of key
     * @param <V> type of value
     * @return cloned map
     * @throws NullPointerException if a key or value is null
     */
    public static <K, V> Map<K, V> copyMapButFailOnNull(Map<? extends K, ? extends V> entries) {
        Map<K, V> entriesToRemap = new HashMap<>(entries.size());
        entries.forEach((k, v) -> {
            // If a key/value is null, throw NPE, nothing gets mutated
            if (k == null || v == null) {
                throw new NullPointerException();
            }
            entriesToRemap.put(k, v);
        });
        return entriesToRemap;
    }
}

Related

  1. copyMap(Map m)
  2. copyMap(Map oMap)
  3. copyMap(Map map)
  4. copyMap(Map m)
  5. copyMap(Object object)
  6. copyMapWithoutEmpties(Map original)
  7. copyOf( Map> map)
  8. copyOf(final Map map)
  9. copyOf(Map src)