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 theCollection
interface.org.apache.commons.collections4.iterators This package contains implementations of theIterator
interface.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 theList
interface.org.apache.commons.collections4.map org.apache.commons.collections4.multimap This package contains implementations of theMultiValuedMap
interfaces.org.apache.commons.collections4.multiset This package contains implementations of theMultiSet
interface.org.apache.commons.collections4.queue This package contains implementations for theQueue
interface.org.apache.commons.collections4.set This package contains implementations of theSet
,SortedSet
andNavigableSet
interfaces.org.apache.commons.collections4.trie This package contains implementations of theTrie
interface. -
-
Uses of Unmodifiable in org.apache.commons.collections4.bag
Classes in org.apache.commons.collections4.bag that implement Unmodifiable Modifier and Type Class Description class
UnmodifiableBag<E>
Decorates anotherBag
to ensure it can't be altered.class
UnmodifiableSortedBag<E>
Decorates anotherSortedBag
to 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 class
UnmodifiableBidiMap<K,V>
Decorates anotherBidiMap
to ensure it can't be altered.class
UnmodifiableOrderedBidiMap<K,V>
Decorates anotherOrderedBidiMap
to ensure it can't be altered.class
UnmodifiableSortedBidiMap<K,V>
Decorates anotherSortedBidiMap
to 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 class
UnmodifiableBoundedCollection<E>
UnmodifiableBoundedCollection
decorates anotherBoundedCollection
to ensure it can't be altered.class
UnmodifiableCollection<E>
Decorates anotherCollection
to 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 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.collections4.keyvalue
Classes in org.apache.commons.collections4.keyvalue that implement Unmodifiable Modifier and Type Class Description class
UnmodifiableMapEntry<K,V>
AMap.Entry
that throws UnsupportedOperationException whensetValue
is 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 class
UnmodifiableList<E>
Decorates anotherList
to 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 class
UnmodifiableEntrySet<K,V>
Decorates a map entrySet
to ensure it can't be altered.class
UnmodifiableMap<K,V>
Decorates anotherMap
to ensure it can't be altered.class
UnmodifiableOrderedMap<K,V>
Decorates anotherOrderedMap
to ensure it can't be altered.class
UnmodifiableSortedMap<K,V>
Decorates anotherSortedMap
to 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 class
UnmodifiableMultiValuedMap<K,V>
Decorates anotherMultiValuedMap
to 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 class
UnmodifiableMultiSet<E>
Decorates anotherMultiSet
to 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 class
UnmodifiableQueue<E>
Decorates anotherQueue
to 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 class
UnmodifiableNavigableSet<E>
Decorates anotherNavigableSet
to ensure it can't be altered.class
UnmodifiableSet<E>
Decorates anotherSet
to ensure it can't be altered.class
UnmodifiableSortedSet<E>
Decorates anotherSortedSet
to 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 class
UnmodifiableTrie<K,V>
An unmodifiableTrie
.
-