9 package javolution.util.internal.map;
11 import java.util.Iterator;
32 public Entry<K, V>
next() {
37 public void remove() {
38 throw new UnsupportedOperationException(
"Read-Only Map.");
50 throw new UnsupportedOperationException(
"Unmodifiable");
55 return target().containsKey(key);
59 public V
get(Object key) {
70 return target().keyComparator();
74 public V
put(K key, V value) {
75 throw new UnsupportedOperationException(
"Unmodifiable");
79 public V
remove(Object key) {
80 throw new UnsupportedOperationException(
"Unmodifiable");
90 return target().valueComparator();