|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FastMap.Entry | |
---|---|
javolution.util | Provides high-performance collection classes and miscellaneous utilities; although
this package provides very few collection classes, they are substitutes for
most of java.util.* classes (for example, java.util.IdentityHashMap would be
a FastMap with an identity key comparator). |
Uses of FastMap.Entry in javolution.util |
---|
Fields in javolution.util declared as FastMap.Entry | |
---|---|
static FastMap.Entry |
FastMap.Entry.NULL
Holds NULL entries (to fill empty hole). |
Methods in javolution.util that return FastMap.Entry | |
---|---|
FastMap.Entry<K,V> |
FastMap.getEntry(Object key)
Returns the entry with the specified key. |
FastMap.Entry<K,V> |
FastMap.Entry.getNext()
Returns the entry after this one. |
FastMap.Entry<K,V> |
FastMap.Entry.getPrevious()
Returns the entry before this one. |
FastMap.Entry<K,V> |
FastMap.head()
Returns the head entry of this map. |
protected FastMap.Entry<K,V> |
FastMap.newEntry()
Returns a new entry for this map; this method can be overriden by custom map implementations. |
FastMap.Entry<K,V> |
FastMap.putEntry(K key,
V value)
Associates the specified value with the specified key in this map and returns the corresponding entry. |
FastMap.Entry<K,V> |
FastMap.tail()
Returns the tail entry of this map. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |