Go to the documentation of this file.
9 package javolution.util.internal.map;
11 import java.util.Iterator;
30 return target().containsKey(key);
34 public V
get(Object key) {
39 public Iterator<java.util.Map.Entry<K, V>>
iterator() {
40 return target().iterator();
45 return target().keyComparator();
54 public V
put(K key, V value) {
55 return target().put(key, value);
59 public V
remove(Object key) {
60 return target().remove(key);
70 return target().valueComparator();
void update(Consumer< MapService< K, V >> action, MapService< K, V > view)
boolean containsKey(Object key)
static final long serialVersionUID
Equality<? super K > keyComparator()
Equality<? super V > valueComparator()
void perform(Consumer< MapService< K, V >> action, MapService< K, V > view)
Iterator< java.util.Map.Entry< K, V > > iterator()
SequentialMapImpl(MapService< K, V > target)
MapService< K, V > target