Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

oracle.javatools.util
Interface Maps.LinkedEntry<K,V>

Type Parameters:
K - The type of key stored by the entry.
V - The type of value stored by the entry.
All Superinterfaces:
java.util.Map.Entry<K,V>, Maps.BaseEntry<K,V>
All Known Subinterfaces:
Maps.TimedEntry<K,V>
All Known Implementing Classes:
Maps.EvictedLinkedEntry, Maps.SoftLinkedEntry, Maps.StrongLinkedEntry, Maps.TimedEvictedLinkedEntry, Maps.TimedSoftLinkedEntry, Maps.TimedStrongLinkedEntry, Maps.TimedWeakLinkedEntry, Maps.WeakLinkedEntry
Enclosing class:
Maps

public static interface Maps.LinkedEntry<K,V>
extends Maps.BaseEntry<K,V>

The Map.Entry (and Maps.BaseEntry) extended interface required by Maps.AbstractLinkedHashMap for its entries.

See Also:
Maps.AbstractLinkedHashMap

Method Summary
 Maps.LinkedEntry<K,V> getAfter()
          Gets the next entry in the iteration list of the containing map.
 Maps.LinkedEntry<K,V> getBefore()
          Gets the previous entry in the iteration list of the containing map.
 void setAfter(Maps.LinkedEntry<K,V> after)
          Sets the next entry in the iteration list of the containing map.
 void setBefore(Maps.LinkedEntry<K,V> before)
          Sets the previous entry in the iteration list of the containing map.
 
Methods inherited from interface oracle.javatools.util.Maps.BaseEntry
getNext, isMutable, keyHashCode, setNext
 
Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue
 

Method Detail

getBefore

Maps.LinkedEntry<K,V> getBefore()
Gets the previous entry in the iteration list of the containing map.


getAfter

Maps.LinkedEntry<K,V> getAfter()
Gets the next entry in the iteration list of the containing map.


setBefore

void setBefore(Maps.LinkedEntry<K,V> before)
Sets the previous entry in the iteration list of the containing map.


setAfter

void setAfter(Maps.LinkedEntry<K,V> after)
Sets the next entry in the iteration list of the containing map.


Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference
11g Release 1 (11.1.1.6.0)

E13403-07

Copyright © 1997, 2011, Oracle. All rights reserved.