Here you can find the source of putIfNonNull(Map
Parameter | Description |
---|---|
map | The Map to put the value into |
key | The mapping key |
value | The value |
true
if the value is non-null
and has been put in the map. false
if the value is null
, in which case the value is not put in the map.
public static <K, V> boolean putIfNonNull(Map<K, V> map, K key, V value)
//package com.java2s; /*/*from w w w . j av a 2 s. c o m*/ * Copyright 2013 Lyor Goldstein * * 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.Map; public class Main { /** * @param map The {@link Map} to put the value into * @param key The mapping key * @param value The value * @return <code>true</code> if the value is non-<code>null</code> and has been * put in the map. <code>false</code> if the value is <code>null</code>, in which * case the value is <U>not</U> put in the map. */ public static <K, V> boolean putIfNonNull(Map<K, V> map, K key, V value) { if (value == null) { return false; } map.put(key, value); return true; } }