Class UnmodifiableEntrySet<K,V>

Type Parameters:
K - the type of the keys in the map
V - the type of the values in the map
All Implemented Interfaces:
Serializable, Iterable<Map.Entry<K,V>>, Collection<Map.Entry<K,V>>, Set<Map.Entry<K,V>>, Unmodifiable

public final class UnmodifiableEntrySet<K,V> extends AbstractSetDecorator<Map.Entry<K,V>> implements Unmodifiable
Decorates a map entry Set to ensure it can't be altered.

Attempts to modify it will result in an UnsupportedOperationException.

Since:
3.0
See Also: