Class ConcurrentReaderHashMap.Entry
java.lang.Object
org.codehaus.groovy.runtime.metaclass.ConcurrentReaderHashMap.Entry
- All Implemented Interfaces:
Map.Entry
- Enclosing class:
- ConcurrentReaderHashMap
ConcurrentReaderHashMap collision list entry.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
getKey()
getValue()
Get the value.int
hashCode()
Set the value of this entry (Note: In an entrySet or entrySet.iterator), unless the set or iterator is used under synchronization of the table as a whole (or you can otherwise guarantee lack of concurrent modification), setValue is not strictly guaranteed to actually replace the value field obtained via the get operation of the underlying hash table in multithreaded applications.toString()
-
Field Details
-
hash
protected final int hash -
key
-
next
-
value
-
-
Method Details
-
getKey
-
getValue
Get the value. Note: In an entrySet or entrySet.iterator, unless the set or iterator is used under synchronization of the table as a whole (or you can otherwise guarantee lack of concurrent modification), getValue might return null, reflecting the fact that the entry has been concurrently removed. However, there are no assurances that concurrent removals will be reflected using this method. -
setValue
Set the value of this entry (Note: In an entrySet or entrySet.iterator), unless the set or iterator is used under synchronization of the table as a whole (or you can otherwise guarantee lack of concurrent modification), setValue is not strictly guaranteed to actually replace the value field obtained via the get operation of the underlying hash table in multithreaded applications. If iterator-wide synchronization is not used, and any other concurrent put or remove operations occur, sometimes even to other entries, then this change is not guaranteed to be reflected in the hash table. (It might, or it might not. There are no assurances either way.)- Specified by:
setValue
in interfaceMap.Entry
- Parameters:
value
- the new value.- Returns:
- the previous value, or null if entry has been detectably removed.
- Throws:
NullPointerException
- if the value isnull
.
-
equals
-
hashCode
public int hashCode() -
toString
-