Class UnmodifiableMultiValuedMap<K,V>

java.lang.Object
org.apache.commons.collections4.multimap.AbstractMultiValuedMapDecorator<K,V>
org.apache.commons.collections4.multimap.UnmodifiableMultiValuedMap<K,V>
Type Parameters:
K - The type of key elements
V - The type of value elements
All Implemented Interfaces:
Serializable, MultiValuedMap<K,V>, Unmodifiable

public final class UnmodifiableMultiValuedMap<K,V> extends AbstractMultiValuedMapDecorator<K,V> implements Unmodifiable
Decorates another MultiValuedMap to ensure it can't be altered.

Attempts to modify it will result in an UnsupportedOperationException.

Since:
4.1
See Also: