Skip navigation links

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

E52944-01


oracle.javatools.util
Interface Maps.BaseEntry<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>
All Known Subinterfaces:
Maps.LinkedEntry<K,V>, Maps.TimedEntry<K,V>
All Known Implementing Classes:
Maps.EvictedLinkedEntry, Maps.SoftEntry, Maps.SoftLinkedEntry, Maps.StrongEntry, Maps.StrongLinkedEntry, Maps.TimedEvictedLinkedEntry, Maps.TimedSoftLinkedEntry, Maps.TimedStrongLinkedEntry, Maps.TimedWeakLinkedEntry, Maps.WeakEntry, Maps.WeakLinkedEntry
Enclosing class:
Maps

public static interface Maps.BaseEntry<K,V>
extends java.util.Map.Entry<K,V>

The extended Map.Entry interface required by Maps.AbstractHashMap for its entries.

See Also:
Maps.AbstractHashMap

Method Summary
 Maps.BaseEntry<K,V> getNext()
          Gets the next entry in the containing hash chain of the containing map.
 boolean isMutable()
          Gets whether this entry is mutable, in particular whether Map.Entry.setValue(V) is supported.
 int keyHashCode()
          Gets the hash code of the key in this entry.
 void setNext(Maps.BaseEntry<K,V> next)
          Sets the next entry in the containing hash chain of the containing map.

 

Methods inherited from interface java.util.Map.Entry
equals, getKey, getValue, hashCode, setValue

 

Method Detail

getNext

Maps.BaseEntry<K,V> getNext()
Gets the next entry in the containing hash chain of the containing map.

setNext

void setNext(Maps.BaseEntry<K,V> next)
Sets the next entry in the containing hash chain of the containing map.

keyHashCode

int keyHashCode()
Gets the hash code of the key in this entry.

isMutable

boolean isMutable()
Gets whether this entry is mutable, in particular whether Map.Entry.setValue(V) is supported.

Skip navigation links

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

E52944-01


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