Java Map Put putBoolean(Map properties, Object key, boolean value)

Here you can find the source of putBoolean(Map properties, Object key, boolean value)

Description

put Boolean

License

Apache License

Declaration

public static void putBoolean(Map<Object, Object> properties, Object key, boolean value) 

Method Source Code

//package com.java2s;
/*/*  w ww .  j  a  v  a  2 s .c  o  m*/
 *  Licensed to the Apache Software Foundation (ASF) under one
 *  or more contributor license agreements.  See the NOTICE file
 *  distributed with this work for additional information
 *  regarding copyright ownership.  The ASF licenses this file
 *  to you 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 {
    public static void putBoolean(Map<Object, Object> properties, Object key, boolean value) {
        properties.put(key, value ? Boolean.TRUE : Boolean.FALSE);
    }
}

Related

  1. putAllRecursively(Map destination, Map source)
  2. putAllTransposed( Map> source_key_valueSet, Map output_value_key)
  3. putAsCollection(K key, V value, Map map)
  4. putAsStringIfNotNull(Map properties, String key, Object value)
  5. putAt(LinkedHashMap map, K key, V value, int pos)
  6. putByFullKey(Map map, String key, Object value)
  7. putCheckedObjectInInnerMap(Map> mapValues, A key, K innerKey, V obj)
  8. putClassToMap(String extensionId, String key, Class className)
  9. putData(Map data, String name, Object value)