Class UnmodifiableEntrySet<K,V>

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
Version:
$Id: UnmodifiableEntrySet.java 1686855 2015-06-22 13:00:27Z tn $
See Also: