All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aspectran.core.util.LinkedCaseInsensitiveMultiValueMap Maven / Gradle / Ivy

There is a newer version: 8.1.3
Show newest version
/*
 * Copyright (c) 2008-2019 The Aspectran Project
 *
 * 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 com.aspectran.core.util;

import com.aspectran.core.lang.NonNull;

import java.io.Serializable;
import java.util.Collection;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;

/**
 * 

This class is a clone of org.springframework.util.LinkedCaseInsensitiveMultiValueMap

* * {@link LinkedHashMap} variant that stores String keys in a case-insensitive * manner, for example for key-based access in a results table. * *

Preserves the original order as well as the original casing of keys, * while allowing for contains, get and remove calls with any case of key.

* *

Does not support {@code null} keys.

*/ public class LinkedCaseInsensitiveMultiValueMap implements MultiValueMap, Serializable { private static final long serialVersionUID = 2505523262093891621L; private final Map> values; /** * Constructs a new, empty instance of the {@code LinkedCaseInsensitiveMultiValueMap} object. */ public LinkedCaseInsensitiveMultiValueMap() { this.values = new LinkedCaseInsensitiveMap<>(Locale.ENGLISH); } /** * Constructs a new, empty instance of the {@code LinkedCaseInsensitiveMultiValueMap} object. * * @param initialCapacity the initial capacity */ public LinkedCaseInsensitiveMultiValueMap(int initialCapacity) { this.values = new LinkedCaseInsensitiveMap<>(initialCapacity, Locale.ENGLISH); } @Override public V getFirst(String key) { List headerValues = this.values.get(key); return (headerValues != null ? headerValues.get(0) : null); } @Override public void add(String key, V value) { List headerValues = this.values.computeIfAbsent(key, k -> new LinkedList<>()); headerValues.add(value); } @Override public void set(String key, V value) { List headerValues = new LinkedList<>(); headerValues.add(value); this.values.put(key, headerValues); } @Override public void setAll(Map values) { for (Entry entry : values.entrySet()) { set(entry.getKey(), entry.getValue()); } } @Override public void put(String key, V[] values) { List list = new LinkedList<>(); if (values != null) { Collections.addAll(list, values); } put(key, list); } @Override public Map toSingleValueMap() { LinkedHashMap singleValueMap = new LinkedHashMap<>(this.values.size()); for (Entry> entry : this.values.entrySet()) { singleValueMap.put(entry.getKey(), entry.getValue().get(0)); } return singleValueMap; } // Map implementation @Override public int size() { return this.values.size(); } @Override public boolean isEmpty() { return this.values.isEmpty(); } @Override public boolean containsKey(Object key) { return this.values.containsKey(key); } @Override public boolean containsValue(Object value) { return this.values.containsValue(value); } @Override public List get(Object key) { return this.values.get(key); } @Override public List put(String key, List value) { return this.values.put(key, value); } @Override public List remove(Object key) { return this.values.remove(key); } @Override public void putAll(@NonNull Map> map) { this.values.putAll(map); } @Override public void clear() { this.values.clear(); } @Override @NonNull public Set keySet() { return this.values.keySet(); } @Override @NonNull public Collection> values() { return this.values.values(); } @Override @NonNull public Set>> entrySet() { return this.values.entrySet(); } @Override public boolean equals(Object other) { if (this == other) { return true; } if (!(other instanceof LinkedCaseInsensitiveMultiValueMap)) { return false; } LinkedCaseInsensitiveMultiValueMap otherValues = (LinkedCaseInsensitiveMultiValueMap)other; return this.values.equals(otherValues.values); } @Override public int hashCode() { return this.values.hashCode(); } @Override public String toString() { return this.values.toString(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy