Uses of Class
r01f.types.collections.SoftHashMap.Entry

Packages that use SoftHashMap.Entry
r01f.types.collections   
 

Uses of SoftHashMap.Entry in r01f.types.collections
 

Fields in r01f.types.collections declared as SoftHashMap.Entry
private  SoftHashMap.Entry<K,V>[] SoftHashMap._table
          Array subyacente que contiene las entradas del mapa Las entradas son un objeto Entry que extiende de SoftReference (es decir, la clave es una SoftReference) y que además almacena: - El value - Un hash de la clave - Una referencia a otro objeto Entry con la misma clave (en realidad el mismo hash de la clave) (ver metodo PUT)
(package private)  SoftHashMap.Entry<K,V> SoftHashMap.HashIterator.entry
           
(package private)  SoftHashMap.Entry<K,V> SoftHashMap.HashIterator.lastReturned
           
(package private)  SoftHashMap.Entry<K,V> SoftHashMap.Entry.next
           
 

Methods in r01f.types.collections that return SoftHashMap.Entry
private  SoftHashMap.Entry<K,V> SoftHashMap._getEntry(java.lang.Object key)
           
private  SoftHashMap.Entry<K,V>[] SoftHashMap._getTable()
           
private  SoftHashMap.Entry<K,V> SoftHashMap._removeMapping(java.lang.Object o)
           
protected  SoftHashMap.Entry<K,V> SoftHashMap.HashIterator.nextEntry()
           
 

Methods in r01f.types.collections with parameters of type SoftHashMap.Entry
private  void SoftHashMap._transfer(SoftHashMap.Entry<K,V>[] src, SoftHashMap.Entry<K,V>[] dest)
           
private  void SoftHashMap._transfer(SoftHashMap.Entry<K,V>[] src, SoftHashMap.Entry<K,V>[] dest)
           
 

Constructors in r01f.types.collections with parameters of type SoftHashMap.Entry
SoftHashMap.Entry(K newKey, V newValue, java.lang.ref.ReferenceQueue<K> queue, int newHash, SoftHashMap.Entry<K,V> newNextEntry)