Uses of Interface
org.apache.commons.collections.Unmodifiable

Packages that use Unmodifiable
org.apache.commons.collections.bag This package contains implementations of the Bag and SortedBag interfaces. 
org.apache.commons.collections.bidimap This package contains implementations of the BidiMap, OrderedBidiMap and SortedBidiMap interfaces. 
org.apache.commons.collections.buffer This package contains implementations of the Buffer interface. 
org.apache.commons.collections.collection This package contains implementations of the Collection interface. 
org.apache.commons.collections.iterators This package contains implementations of the Iterator interface. 
org.apache.commons.collections.keyvalue This package contains implementations of collection and map related key/value classes. 
org.apache.commons.collections.list This package contains implementations of the List interface. 
org.apache.commons.collections.map This package contains implementations of the Map, IterableMap, OrderedMap and SortedMap interfaces. 
org.apache.commons.collections.set This package contains implementations of the Set and SortedSet interfaces. 
 

Uses of Unmodifiable in org.apache.commons.collections.bag
 

Classes in org.apache.commons.collections.bag that implement Unmodifiable
 class UnmodifiableBag<E>
          Decorates another Bag to ensure it can't be altered.
 class UnmodifiableSortedBag<E>
          Decorates another SortedBag to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.bidimap
 

Classes in org.apache.commons.collections.bidimap that implement Unmodifiable
 class UnmodifiableBidiMap<K,V>
          Decorates another BidiMap to ensure it can't be altered.
 class UnmodifiableOrderedBidiMap<K,V>
          Decorates another OrderedBidiMap to ensure it can't be altered.
 class UnmodifiableSortedBidiMap<K,V>
          Decorates another SortedBidiMap to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.buffer
 

Classes in org.apache.commons.collections.buffer that implement Unmodifiable
 class UnmodifiableBuffer<E>
          Decorates another Buffer to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.collection
 

Classes in org.apache.commons.collections.collection that implement Unmodifiable
 class UnmodifiableCollection<E>
          Decorates another Collection to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.iterators
 

Classes in org.apache.commons.collections.iterators that implement Unmodifiable
 class UnmodifiableIterator<E>
          Decorates an iterator such that it cannot be modified.
 class UnmodifiableListIterator<E>
          Decorates a list iterator such that it cannot be modified.
 class UnmodifiableMapIterator<K,V>
          Decorates a map iterator such that it cannot be modified.
 class UnmodifiableOrderedMapIterator<K,V>
          Decorates an ordered map iterator such that it cannot be modified.
 

Uses of Unmodifiable in org.apache.commons.collections.keyvalue
 

Classes in org.apache.commons.collections.keyvalue that implement Unmodifiable
 class UnmodifiableMapEntry<K,V>
          A Map.Entry that throws UnsupportedOperationException when setValue is called.
 

Uses of Unmodifiable in org.apache.commons.collections.list
 

Classes in org.apache.commons.collections.list that implement Unmodifiable
 class UnmodifiableList<E>
          Decorates another List to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.map
 

Classes in org.apache.commons.collections.map that implement Unmodifiable
 class UnmodifiableEntrySet<K,V>
          Decorates a map entry Set to ensure it can't be altered.
 class UnmodifiableMap<K,V>
          Decorates another Map to ensure it can't be altered.
 class UnmodifiableOrderedMap<K,V>
          Decorates another OrderedMap to ensure it can't be altered.
 class UnmodifiableSortedMap<K,V>
          Decorates another SortedMap to ensure it can't be altered.
 

Uses of Unmodifiable in org.apache.commons.collections.set
 

Classes in org.apache.commons.collections.set that implement Unmodifiable
 class UnmodifiableSet<E>
          Decorates another Set to ensure it can't be altered.
 class UnmodifiableSortedSet<E>
          Decorates another SortedSet to ensure it can't be altered.
 



Copyright © 2005-2005 Apache Software Foundation, Matt Hall, John Watkinson. All Rights Reserved.