public class CaseInsensitiveLinkedHashMap<K,V>
extends org.apache.commons.collections4.map.LinkedMap<K,V>
org.apache.commons.collections4.map.AbstractLinkedMap.EntrySetIterator<K,V>, org.apache.commons.collections4.map.AbstractLinkedMap.KeySetIterator<K>, org.apache.commons.collections4.map.AbstractLinkedMap.LinkEntry<K,V>, org.apache.commons.collections4.map.AbstractLinkedMap.LinkIterator<K,V>, org.apache.commons.collections4.map.AbstractLinkedMap.LinkMapIterator<K,V>, org.apache.commons.collections4.map.AbstractLinkedMap.ValuesIterator<V>org.apache.commons.collections4.map.AbstractHashedMap.EntrySet<K,V>, org.apache.commons.collections4.map.AbstractHashedMap.HashEntry<K,V>, org.apache.commons.collections4.map.AbstractHashedMap.HashIterator<K,V>, org.apache.commons.collections4.map.AbstractHashedMap.HashMapIterator<K,V>, org.apache.commons.collections4.map.AbstractHashedMap.KeySet<K>, org.apache.commons.collections4.map.AbstractHashedMap.Values<V>| Modifier and Type | Field and Description |
|---|---|
private static int |
NULL_HASH
Represents the null value
|
| Constructor and Description |
|---|
CaseInsensitiveLinkedHashMap()
Default constructor.
|
CaseInsensitiveLinkedHashMap(int initialCapacity)
Create the map with the supplied initial capacity and load factor of 0.75.
|
CaseInsensitiveLinkedHashMap(int initialCapacity,
float loadFactor)
Create the map with the supplied initial capacity and load factor.
|
| Modifier and Type | Method and Description |
|---|---|
protected int |
hash(java.lang.Object key)
Hash the supplied key.
|
protected boolean |
isEqualKey(java.lang.Object key1,
java.lang.Object key2)
Comapare two keys.
|
static void |
main(java.lang.String[] args) |
asList, clone, get, getValue, indexOf, removeaddEntry, clear, containsValue, createEntry, createEntrySetIterator, createKeySetIterator, createValuesIterator, entryAfter, entryBefore, firstKey, getEntry, getEntry, init, lastKey, mapIterator, nextKey, previousKey, removeEntryaddMapping, calculateNewCapacity, calculateThreshold, checkCapacity, containsKey, convertKey, destroyEntry, doReadObject, doWriteObject, ensureCapacity, entryHashCode, entryKey, entryNext, entrySet, entryValue, equals, get, hashCode, hashIndex, isEmpty, isEqualValue, keySet, put, putAll, remove, removeMapping, reuseEntry, size, toString, updateEntry, valuesfinalize, getClass, notify, notifyAll, wait, wait, waitpublic CaseInsensitiveLinkedHashMap()
public CaseInsensitiveLinkedHashMap(int initialCapacity)
initialCapacity - Initial capacity of the map.public CaseInsensitiveLinkedHashMap(int initialCapacity,
float loadFactor)
initialCapacity - Initial capacity of the map.loadFactor - Load factor value.