Javolution 6.0.0 java
javolution.util.internal.map.MapEntryImpl< K, V > Class Template Reference
Inheritance diagram for javolution.util.internal.map.MapEntryImpl< K, V >:
[legend]
Collaboration diagram for javolution.util.internal.map.MapEntryImpl< K, V >:
[legend]

Public Member Functions

getKey ()
 
getValue ()
 
setValue (V value)
 
String toString ()
 

Package Attributes

int hash
 
key
 
MapEntryImpl< K, V > next
 
MapEntryImpl< K, V > previous
 
value
 

Detailed Description

The hash map entry implementation (not serializable).

Definition at line 16 of file MapEntryImpl.java.

Member Function Documentation

◆ getKey()

Definition at line 25 of file MapEntryImpl.java.

25  {
26  return key;
27  }

References javolution.util.internal.map.MapEntryImpl< K, V >.key.

◆ getValue()

Definition at line 30 of file MapEntryImpl.java.

30  {
31  return value;
32  }

References javolution.util.internal.map.MapEntryImpl< K, V >.value.

◆ setValue()

V javolution.util.internal.map.MapEntryImpl< K, V >.setValue ( value)

Definition at line 35 of file MapEntryImpl.java.

35  {
36  V oldValue = this.value;
37  this.value = value;
38  return oldValue;
39  }

References javolution.util.internal.map.MapEntryImpl< K, V >.value.

◆ toString()

Member Data Documentation

◆ hash

◆ key

◆ next

◆ previous

◆ value


The documentation for this class was generated from the following file:
javolution.util.internal.map.MapEntryImpl.key
K key
Definition: MapEntryImpl.java:19
javolution.util.internal.map.MapEntryImpl.value
V value
Definition: MapEntryImpl.java:22