Uses of Class
com.tangosol.util.SafeHashMap.Entry
-
Packages that use SafeHashMap.Entry Package Description com.tangosol.net.cache Contains classes providing various caching strategies.com.tangosol.util Contains various generic utilities. -
-
Uses of SafeHashMap.Entry in com.tangosol.net.cache
Subclasses of SafeHashMap.Entry in com.tangosol.net.cache Modifier and Type Class Description class
LocalCache.Entry
A holder for a cached value.class
OldCache.Entry
Deprecated.A holder for a cached value.Methods in com.tangosol.net.cache that return SafeHashMap.Entry Modifier and Type Method Description SafeHashMap.Entry
LocalCache. getEntry(Object oKey)
Locate an Entry in the hash map based on its key.SafeHashMap.Entry
OldCache. getEntry(Object oKey)
Deprecated.Locate an Entry in the hash map based on its key.protected SafeHashMap.Entry
OldCache. getEntryInternal(Object oKey)
Deprecated.Locate an Entry in the hash map based on its key.protected SafeHashMap.Entry
LocalCache. instantiateEntry()
Factory method.protected SafeHashMap.Entry
OldCache. instantiateEntry()
Deprecated.Factory method.Methods in com.tangosol.net.cache with parameters of type SafeHashMap.Entry Modifier and Type Method Description protected void
OldCache.Entry. copyFrom(SafeHashMap.Entry entry)
Copy this Entry's information from another Entry. -
Uses of SafeHashMap.Entry in com.tangosol.util
Subclasses of SafeHashMap.Entry in com.tangosol.util Modifier and Type Class Description protected class
ObservableHashMap.Entry<K,V>
A holder for a cached value.Fields in com.tangosol.util declared as SafeHashMap.Entry Modifier and Type Field Description protected SafeHashMap.Entry<K,V>
SafeHashMap.Entry. m_eNext
The next entry in the linked list (an open hashing implementation).Fields in com.tangosol.util with type parameters of type SafeHashMap.Entry Modifier and Type Field Description protected AtomicReferenceArray<SafeHashMap.Entry>
SafeHashMap. m_aeBucket
The array of hash buckets.Methods in com.tangosol.util that return SafeHashMap.Entry Modifier and Type Method Description protected SafeHashMap.Entry
SafeHashMap. cloneEntryList(SafeHashMap.Entry entryThat)
Clone an entire linked list of entries.SafeHashMap.Entry<K,V>
SafeHashMap. getEntry(Object key)
Locate an Entry in the hash map based on its key.protected SafeHashMap.Entry<K,V>
SafeHashMap. getEntryInternal(Object oKey)
Locate an Entry in the hash map based on its key.protected SafeHashMap.Entry<K,V>
ObservableHashMap. instantiateEntry()
Factory method.protected SafeHashMap.Entry<K,V>
SafeHashMap. instantiateEntry()
Factory pattern: instantiate an un-initialized Entry object.protected SafeHashMap.Entry<K,V>
SafeHashMap. instantiateEntry(K oKey, V oValue, int iHash)
Factory pattern: instantiate initialized Entry object.Methods in com.tangosol.util that return types with arguments of type SafeHashMap.Entry Modifier and Type Method Description protected AtomicReferenceArray<SafeHashMap.Entry>
SafeHashMap. getStableBucketArray()
Get the bucket array, or if a resize is occurring, wait for the resize to complete and return the new bucket array.Methods in com.tangosol.util with parameters of type SafeHashMap.Entry Modifier and Type Method Description protected SafeHashMap.Entry
SafeHashMap. cloneEntryList(SafeHashMap.Entry entryThat)
Clone an entire linked list of entries.protected void
SafeHashMap.Entry. copyFrom(SafeHashMap.Entry<K,V> entry)
Copy this Entry's information from another Entry.protected void
SafeHashMap. removeEntryInternal(SafeHashMap.Entry<K,V> entry)
Removes the passed Entry from the map.
-