/* * Copyright 2004-2015 the Seasar Foundation and the Others. * * 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. */ package org.seasar.framework.util; import java.util.Iterator; import java.util.Map; /** * キーで大文字小文字を気にしない {@link ArrayMap}です。 * * @author higa * */ public class CaseInsensitiveMap extends ArrayMap { private static final long serialVersionUID = 1L; /** * {@link CaseInsensitiveMap}を作成します。 */ public CaseInsensitiveMap() { super(); } /** * {@link CaseInsensitiveMap}を作成します。 * * @param capacity */ public CaseInsensitiveMap(int capacity) { super(capacity); } /** * キーが含まれているかどうかを返します。 * * @param key * @return キーが含まれているかどうか */ public final boolean containsKey(String key) { return super.containsKey(convertKey(key)); } public final Object get(Object key) { return super.get(convertKey(key)); } public final Object put(Object key, Object value) { return super.put(convertKey(key), value); } public final void putAll(Map map) { for (Iterator i = map.entrySet().iterator(); i.hasNext();) { Map.Entry entry = (Map.Entry) i.next(); put(convertKey(entry.getKey()), entry.getValue()); } } public final Object remove(Object key) { return super.remove(convertKey(key)); } public boolean containsKey(Object key) { return super.containsKey(convertKey(key)); } private static String convertKey(Object key) { return ((String) key).toLowerCase(); } }