Uses of Interface
org.apache.commons.collections4.Unmodifiable
-
Packages that use Unmodifiable Package Description org.apache.commons.collections4.bag org.apache.commons.collections4.bidimap org.apache.commons.collections4.collection This package contains implementations of theCollectioninterface.org.apache.commons.collections4.iterators This package contains implementations of theIteratorinterface.org.apache.commons.collections4.keyvalue This package contains implementations of collection and map related key/value classes.org.apache.commons.collections4.list This package contains implementations of theListinterface.org.apache.commons.collections4.map org.apache.commons.collections4.multimap This package contains implementations of theMultiValuedMapinterfaces.org.apache.commons.collections4.multiset This package contains implementations of theMultiSetinterface.org.apache.commons.collections4.queue This package contains implementations for theQueueinterface.org.apache.commons.collections4.set This package contains implementations of theSet,SortedSetandNavigableSetinterfaces.org.apache.commons.collections4.trie This package contains implementations of theTrieinterface. -
-
Uses of Unmodifiable in org.apache.commons.collections4.bag
Classes in org.apache.commons.collections4.bag that implement Unmodifiable Modifier and Type Class Description classUnmodifiableBag<E>Decorates anotherBagto ensure it can't be altered.classUnmodifiableSortedBag<E>Decorates anotherSortedBagto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.bidimap
Classes in org.apache.commons.collections4.bidimap that implement Unmodifiable Modifier and Type Class Description classUnmodifiableBidiMap<K,V>Decorates anotherBidiMapto ensure it can't be altered.classUnmodifiableOrderedBidiMap<K,V>Decorates anotherOrderedBidiMapto ensure it can't be altered.classUnmodifiableSortedBidiMap<K,V>Decorates anotherSortedBidiMapto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.collection
Classes in org.apache.commons.collections4.collection that implement Unmodifiable Modifier and Type Class Description classUnmodifiableBoundedCollection<E>UnmodifiableBoundedCollectiondecorates anotherBoundedCollectionto ensure it can't be altered.classUnmodifiableCollection<E>Decorates anotherCollectionto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.iterators
Classes in org.apache.commons.collections4.iterators that implement Unmodifiable Modifier and Type Class Description classUnmodifiableIterator<E>Decorates an iterator such that it cannot be modified.classUnmodifiableListIterator<E>Decorates a list iterator such that it cannot be modified.classUnmodifiableMapIterator<K,V>Decorates a map iterator such that it cannot be modified.classUnmodifiableOrderedMapIterator<K,V>Decorates an ordered map iterator such that it cannot be modified. -
Uses of Unmodifiable in org.apache.commons.collections4.keyvalue
Classes in org.apache.commons.collections4.keyvalue that implement Unmodifiable Modifier and Type Class Description classUnmodifiableMapEntry<K,V>AMap.Entrythat throws UnsupportedOperationException whensetValueis called. -
Uses of Unmodifiable in org.apache.commons.collections4.list
Classes in org.apache.commons.collections4.list that implement Unmodifiable Modifier and Type Class Description classUnmodifiableList<E>Decorates anotherListto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.map
Classes in org.apache.commons.collections4.map that implement Unmodifiable Modifier and Type Class Description classUnmodifiableEntrySet<K,V>Decorates a map entrySetto ensure it can't be altered.classUnmodifiableMap<K,V>Decorates anotherMapto ensure it can't be altered.classUnmodifiableOrderedMap<K,V>Decorates anotherOrderedMapto ensure it can't be altered.classUnmodifiableSortedMap<K,V>Decorates anotherSortedMapto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.multimap
Classes in org.apache.commons.collections4.multimap that implement Unmodifiable Modifier and Type Class Description classUnmodifiableMultiValuedMap<K,V>Decorates anotherMultiValuedMapto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.multiset
Classes in org.apache.commons.collections4.multiset that implement Unmodifiable Modifier and Type Class Description classUnmodifiableMultiSet<E>Decorates anotherMultiSetto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.queue
Classes in org.apache.commons.collections4.queue that implement Unmodifiable Modifier and Type Class Description classUnmodifiableQueue<E>Decorates anotherQueueto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.set
Classes in org.apache.commons.collections4.set that implement Unmodifiable Modifier and Type Class Description classUnmodifiableNavigableSet<E>Decorates anotherNavigableSetto ensure it can't be altered.classUnmodifiableSet<E>Decorates anotherSetto ensure it can't be altered.classUnmodifiableSortedSet<E>Decorates anotherSortedSetto ensure it can't be altered. -
Uses of Unmodifiable in org.apache.commons.collections4.trie
Classes in org.apache.commons.collections4.trie that implement Unmodifiable Modifier and Type Class Description classUnmodifiableTrie<K,V>An unmodifiableTrie.
-