Here you can find the source of removeObjectProperty(Map properties, String key, Object defaultValue)
Parameter | Description |
---|---|
properties | a parameter |
key | a parameter |
defaultValue | a parameter |
public static Object removeObjectProperty(Map properties, String key, Object defaultValue)
//package com.java2s; /*//from w w w .ja va 2s . co m * Copyright 2001, 2002,2004 The Apache Software Foundation. * * 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 { /** * Returns an Object property from a Map and removes it. * * @param properties * @param key * @param defaultValue * @return */ public static Object removeObjectProperty(Map properties, String key, Object defaultValue) { Object value = defaultValue; if (properties != null && properties.containsKey(key)) { value = properties.remove(key); } return value; } }