Package org.apache.torque.util
Klasse ListOrderedMapCI<T>
- Alle implementierten Schnittstellen:
Serializable
,Cloneable
,Map<String,
T>
A subclass of LinkedHashMap that has case insensitive
String key methods.
- Version:
- $Id: ListOrderedMapCI.java 1839288 2018-08-27 09:48:33Z tv $
- Autor:
- Greg Monroe
- Siehe auch:
-
Verschachtelte Klassen - Übersicht
Von Klasse geerbte verschachtelte Klassen/Schnittstellen java.util.AbstractMap
AbstractMap.SimpleEntry<K,
V>, AbstractMap.SimpleImmutableEntry<K, V> -
Konstruktorübersicht
Konstruktoren -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungboolean
containsKey
(Object key) Test if the key exists in the mapping.Get the object associated with this key.Adds a value to the end of the list with the specified key.Removes the mapping for the specified key.Von Klasse geerbte Methoden java.util.LinkedHashMap
clear, containsValue, entrySet, forEach, getOrDefault, keySet, newLinkedHashMap, removeEldestEntry, replaceAll, values
Von Klasse geerbte Methoden java.util.HashMap
clone, compute, computeIfAbsent, computeIfPresent, isEmpty, merge, newHashMap, putAll, putIfAbsent, remove, replace, replace, size
Von Klasse geerbte Methoden java.util.AbstractMap
equals, hashCode, toString
Von Klasse geerbte Methoden java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Von Schnittstelle geerbte Methoden java.util.Map
compute, computeIfAbsent, computeIfPresent, equals, hashCode, isEmpty, merge, putAll, putIfAbsent, remove, replace, replace, size
-
Konstruktordetails
-
ListOrderedMapCI
public ListOrderedMapCI()
-
-
Methodendetails
-
get
Get the object associated with this key. -
put
Adds a value to the end of the list with the specified key. -
remove
Removes the mapping for the specified key. -
containsKey
Test if the key exists in the mapping.- Angegeben von:
containsKey
in SchnittstelleMap<String,
T> - Setzt außer Kraft:
containsKey
in KlasseHashMap<String,
T> - Parameter:
key
- The case insensitive key to test for.- Gibt zurück:
- True if the key exists.
-