Uses of Class
org.apache.commons.collections.map.AbstractHashedMap.HashEntry
Packages that use AbstractHashedMap.HashEntry
Package
Description
-
Uses of AbstractHashedMap.HashEntry in org.apache.commons.collections.map
Subclasses of AbstractHashedMap.HashEntry in org.apache.commons.collections.mapModifier and TypeClassDescriptionprotected static classLinkEntry that stores the data.protected static classA MapEntry implementation for the map.protected static classHashEntryFields in org.apache.commons.collections.map declared as AbstractHashedMap.HashEntryModifier and TypeFieldDescriptionprotected AbstractHashedMap.HashEntry[]AbstractHashedMap.dataMap entriesprotected AbstractHashedMap.HashEntryAbstractHashedMap.HashIterator.lastThe last returned entryprotected AbstractHashedMap.HashEntryAbstractHashedMap.HashEntry.nextThe next entry in the hash chainprotected AbstractHashedMap.HashEntryAbstractHashedMap.HashIterator.nextThe next entryMethods in org.apache.commons.collections.map that return AbstractHashedMap.HashEntryModifier and TypeMethodDescriptionprotected AbstractHashedMap.HashEntryAbstractHashedMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the key-value data.protected AbstractHashedMap.HashEntryAbstractLinkedMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the data.protected AbstractHashedMap.HashEntryAbstractReferenceMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates a ReferenceEntry instead of a HashEntry.protected AbstractHashedMap.HashEntryIdentityMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the data.protected AbstractHashedMap.HashEntryAbstractHashedMap.HashIterator.currentEntry()protected AbstractHashedMap.HashEntryAbstractHashedMap.entryNext(AbstractHashedMap.HashEntry entry) Gets thenextfield from aHashEntry.protected AbstractHashedMap.HashEntryGets the entry mapped to the key specified.protected AbstractHashedMap.HashEntryGets the entry mapped to the key specified.protected AbstractHashedMap.HashEntryAbstractHashedMap.HashIterator.nextEntry()Methods in org.apache.commons.collections.map with parameters of type AbstractHashedMap.HashEntryModifier and TypeMethodDescriptionprotected voidAbstractHashedMap.addEntry(AbstractHashedMap.HashEntry entry, int hashIndex) Adds an entry into this map.protected voidAbstractLinkedMap.addEntry(AbstractHashedMap.HashEntry entry, int hashIndex) Adds an entry into this map, maintaining insertion order.protected AbstractHashedMap.HashEntryAbstractHashedMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the key-value data.protected AbstractHashedMap.HashEntryAbstractLinkedMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the data.protected AbstractHashedMap.HashEntryAbstractReferenceMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates a ReferenceEntry instead of a HashEntry.protected AbstractHashedMap.HashEntryIdentityMap.createEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates an entry to store the data.protected voidAbstractHashedMap.destroyEntry(AbstractHashedMap.HashEntry entry) Kills an entry ready for the garbage collector.protected intAbstractHashedMap.entryHashCode(AbstractHashedMap.HashEntry entry) Gets thehashCodefield from aHashEntry.protected ObjectAbstractHashedMap.entryKey(AbstractHashedMap.HashEntry entry) Gets thekeyfield from aHashEntry.protected AbstractHashedMap.HashEntryAbstractHashedMap.entryNext(AbstractHashedMap.HashEntry entry) Gets thenextfield from aHashEntry.protected ObjectAbstractHashedMap.entryValue(AbstractHashedMap.HashEntry entry) Gets thevaluefield from aHashEntry.protected booleanMultiKeyMap.isEqualKey(AbstractHashedMap.HashEntry entry, Object key1, Object key2) Is the key equal to the combined key.protected booleanMultiKeyMap.isEqualKey(AbstractHashedMap.HashEntry entry, Object key1, Object key2, Object key3) Is the key equal to the combined key.protected booleanMultiKeyMap.isEqualKey(AbstractHashedMap.HashEntry entry, Object key1, Object key2, Object key3, Object key4) Is the key equal to the combined key.protected booleanMultiKeyMap.isEqualKey(AbstractHashedMap.HashEntry entry, Object key1, Object key2, Object key3, Object key4, Object key5) Is the key equal to the combined key.protected voidAbstractHashedMap.removeEntry(AbstractHashedMap.HashEntry entry, int hashIndex, AbstractHashedMap.HashEntry previous) Removes an entry from the chain stored in a particular index.protected voidAbstractLinkedMap.removeEntry(AbstractHashedMap.HashEntry entry, int hashIndex, AbstractHashedMap.HashEntry previous) Removes an entry from the map and the linked list.protected voidAbstractHashedMap.removeMapping(AbstractHashedMap.HashEntry entry, int hashIndex, AbstractHashedMap.HashEntry previous) Removes a mapping from the map.protected voidAbstractHashedMap.reuseEntry(AbstractHashedMap.HashEntry entry, int hashIndex, int hashCode, Object key, Object value) Reuses an existing key-value mapping, storing completely new data.protected voidAbstractHashedMap.updateEntry(AbstractHashedMap.HashEntry entry, Object newValue) Updates an existing key-value mapping to change the value.protected voidLRUMap.updateEntry(AbstractHashedMap.HashEntry entry, Object newValue) Updates an existing key-value mapping.Constructors in org.apache.commons.collections.map with parameters of type AbstractHashedMap.HashEntryModifierConstructorDescriptionprotectedHashEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) protectedIdentityEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) protectedLinkEntry(AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Constructs a new entry.ReferenceEntry(AbstractReferenceMap parent, AbstractHashedMap.HashEntry next, int hashCode, Object key, Object value) Creates a new entry object for the ReferenceMap.