Uses of Interface
org.apache.commons.collections.Unmodifiable
-
Packages that use Unmodifiable Package Description org.apache.commons.collections.bag org.apache.commons.collections.bidimap org.apache.commons.collections.buffer This package contains implementations of theBuffer
interface.org.apache.commons.collections.collection This package contains implementations of theCollection
interface.org.apache.commons.collections.iterators This package contains implementations of theIterator
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 theList
interface.org.apache.commons.collections.map org.apache.commons.collections.set -
-
Uses of Unmodifiable in org.apache.commons.collections.bag
Classes in org.apache.commons.collections.bag that implement Unmodifiable Modifier and Type Class Description class
UnmodifiableBag
Decorates anotherBag
to ensure it can't be altered.class
UnmodifiableSortedBag
Decorates anotherSortedBag
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 Modifier and Type Class Description class
UnmodifiableBidiMap
Decorates anotherBidiMap
to ensure it can't be altered.class
UnmodifiableOrderedBidiMap
Decorates anotherOrderedBidiMap
to ensure it can't be altered.class
UnmodifiableSortedBidiMap
Decorates anotherSortedBidiMap
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 Modifier and Type Class Description class
UnmodifiableBuffer
Decorates anotherBuffer
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 Modifier and Type Class Description class
UnmodifiableCollection
Decorates anotherCollection
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 Modifier and Type Class Description class
UnmodifiableIterator
Decorates an iterator such that it cannot be modified.class
UnmodifiableListIterator
Decorates a list iterator such that it cannot be modified.class
UnmodifiableMapIterator
Decorates a map iterator such that it cannot be modified.class
UnmodifiableOrderedMapIterator
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 Modifier and Type Class Description class
UnmodifiableMapEntry
AMap.Entry
that throws UnsupportedOperationException whensetValue
is called. -
Uses of Unmodifiable in org.apache.commons.collections.list
Classes in org.apache.commons.collections.list that implement Unmodifiable Modifier and Type Class Description class
UnmodifiableList
Decorates anotherList
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 Modifier and Type Class Description class
UnmodifiableEntrySet
Decorates a map entrySet
to ensure it can't be altered.class
UnmodifiableMap
Decorates anotherMap
to ensure it can't be altered.class
UnmodifiableOrderedMap
Decorates anotherOrderedMap
to ensure it can't be altered.class
UnmodifiableSortedMap
Decorates anotherSortedMap
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 Modifier and Type Class Description class
UnmodifiableSet
Decorates anotherSet
to ensure it can't be altered.class
UnmodifiableSortedSet
Decorates anotherSortedSet
to ensure it can't be altered.
-