Alphabetical Index

_ A B C D E F G H I K L M N O P R S T U V W

_

_cursors - field in class org.apache.commons.collections.CursorableLinkedList
A list of the currently CursorableLinkedList.Cursors currently open in this list.
_head - field in class org.apache.commons.collections.CursorableLinkedList
A sentry node.
_modCount - field in class org.apache.commons.collections.CursorableLinkedList
Tracks the number of structural modifications to me.
_size - field in class org.apache.commons.collections.CursorableLinkedList
The number of elements in me.

A

AbstractBagDecorator - class org.apache.commons.collections.bag.AbstractBagDecorator
Decorates another Bag to provide additional behaviour.
AbstractBagDecorator() - constructor for class org.apache.commons.collections.bag.AbstractBagDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractBagDecorator(org.apache.commons.collections.Bag) - constructor for class org.apache.commons.collections.bag.AbstractBagDecorator
Constructor that wraps (not copies).
AbstractBidiMapDecorator - class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to a BidiMap via decoration.
AbstractBidiMapDecorator(org.apache.commons.collections.BidiMap) - constructor for class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
Constructor that wraps (not copies).
AbstractBufferDecorator - class org.apache.commons.collections.buffer.AbstractBufferDecorator
Decorates another Buffer to provide additional behaviour.
AbstractBufferDecorator() - constructor for class org.apache.commons.collections.buffer.AbstractBufferDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractBufferDecorator(org.apache.commons.collections.Buffer) - constructor for class org.apache.commons.collections.buffer.AbstractBufferDecorator
Constructor that wraps (not copies).
AbstractCollectionDecorator - class org.apache.commons.collections.collection.AbstractCollectionDecorator
Decorates another Collection to provide additional behaviour.
AbstractCollectionDecorator() - constructor for class org.apache.commons.collections.collection.AbstractCollectionDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractCollectionDecorator(Collection) - constructor for class org.apache.commons.collections.collection.AbstractCollectionDecorator
Constructor that wraps (not copies).
AbstractDualBidiMap - class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Abstract BidiMap implemented using two maps.
AbstractDualBidiMap() - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates an empty map, initialised by createMap.
AbstractDualBidiMap(Map,Map) - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates an empty map using the two maps specified as storage.
AbstractDualBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Constructs a map that decorates the specified maps, used by the subclass createBidiMap implementation.
AbstractHashedMap - class org.apache.commons.collections.map.AbstractHashedMap
An abstract implementation of a hash-based map which provides numerous points for subclasses to override.
AbstractHashedMap() - constructor for class org.apache.commons.collections.map.AbstractHashedMap
Constructor only used in deserialization, do not use otherwise.
AbstractHashedMap(int) - constructor for class org.apache.commons.collections.map.AbstractHashedMap
Constructs a new, empty map with the specified initial capacity and default load factor.
AbstractHashedMap(int,float) - constructor for class org.apache.commons.collections.map.AbstractHashedMap
Constructs a new, empty map with the specified initial capacity and load factor.
AbstractHashedMap(int,float,int) - constructor for class org.apache.commons.collections.map.AbstractHashedMap
Constructor which performs no validation on the passed in parameters.
AbstractHashedMap(Map) - constructor for class org.apache.commons.collections.map.AbstractHashedMap
Constructor copying elements from another map.
AbstractIteratorDecorator - class org.apache.commons.collections.iterators.AbstractIteratorDecorator
Provides basic behaviour for decorating an iterator with extra functionality.
AbstractIteratorDecorator(Iterator) - constructor for class org.apache.commons.collections.iterators.AbstractIteratorDecorator
Constructor that decorates the specified iterator.
AbstractKeyValue - class org.apache.commons.collections.keyvalue.AbstractKeyValue
Abstract pair class to assist with creating KeyValue and MapEntry implementations.
AbstractKeyValue(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.AbstractKeyValue
Constructs a new pair with the specified key and given value.
AbstractLinkedList - class org.apache.commons.collections.list.AbstractLinkedList
An abstract implementation of a linked list which provides numerous points for subclasses to override.
AbstractLinkedList() - constructor for class org.apache.commons.collections.list.AbstractLinkedList
Constructor that does nothing intended for deserialization.
AbstractLinkedList(Collection) - constructor for class org.apache.commons.collections.list.AbstractLinkedList
Constructs a list copying data from the specified collection.
AbstractLinkedMap - class org.apache.commons.collections.map.AbstractLinkedMap
An abstract implementation of a hash-based map that links entries to create an ordered map and which provides numerous points for subclasses to override.
AbstractLinkedMap() - constructor for class org.apache.commons.collections.map.AbstractLinkedMap
Constructor only used in deserialization, do not use otherwise.
AbstractLinkedMap(int) - constructor for class org.apache.commons.collections.map.AbstractLinkedMap
Constructs a new, empty map with the specified initial capacity.
AbstractLinkedMap(int,float) - constructor for class org.apache.commons.collections.map.AbstractLinkedMap
Constructs a new, empty map with the specified initial capacity and load factor.
AbstractLinkedMap(int,float,int) - constructor for class org.apache.commons.collections.map.AbstractLinkedMap
Constructor which performs no validation on the passed in parameters.
AbstractLinkedMap(Map) - constructor for class org.apache.commons.collections.map.AbstractLinkedMap
Constructor copying elements from another map.
AbstractListDecorator - class org.apache.commons.collections.list.AbstractListDecorator
Decorates another List to provide additional behaviour.
AbstractListDecorator() - constructor for class org.apache.commons.collections.list.AbstractListDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractListDecorator(List) - constructor for class org.apache.commons.collections.list.AbstractListDecorator
Constructor that wraps (not copies).
AbstractListIteratorDecorator - class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
Provides basic behaviour for decorating a list iterator with extra functionality.
AbstractListIteratorDecorator(ListIterator) - constructor for class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
Constructor that decorates the specified iterator.
AbstractMapBag - class org.apache.commons.collections.bag.AbstractMapBag
Abstract implementation of the Bag interface to simplify the creation of subclass implementations.
AbstractMapBag() - constructor for class org.apache.commons.collections.bag.AbstractMapBag
Constructor needed for subclass serialisation.
AbstractMapBag(Map) - constructor for class org.apache.commons.collections.bag.AbstractMapBag
Constructor that assigns the specified Map as the backing store.
AbstractMapDecorator - class org.apache.commons.collections.map.AbstractMapDecorator
Provides a base decorator that enables additional functionality to be added to a Map via decoration.
AbstractMapDecorator() - constructor for class org.apache.commons.collections.map.AbstractMapDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractMapDecorator(Map) - constructor for class org.apache.commons.collections.map.AbstractMapDecorator
Constructor that wraps (not copies).
AbstractMapEntry - class org.apache.commons.collections.keyvalue.AbstractMapEntry
Abstract Pair class to assist with creating correct Map Entry implementations.
AbstractMapEntry(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.AbstractMapEntry
Constructs a new entry with the given key and given value.
AbstractMapEntryDecorator - class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
Provides a base decorator that allows additional functionality to be added to a Map Entry.
AbstractMapEntryDecorator(Map.Entry) - constructor for class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
Constructor that wraps (not copies).
AbstractMapIteratorDecorator - class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Provides basic behaviour for decorating a map iterator with extra functionality.
Constructor that decorates the specified iterator.
AbstractOrderedBidiMapDecorator - class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to an OrderedBidiMap via decoration.
Constructor that wraps (not copies).
AbstractOrderedMapDecorator - class org.apache.commons.collections.map.AbstractOrderedMapDecorator
Provides a base decorator that enables additional functionality to be added to an OrderedMap via decoration.
AbstractOrderedMapDecorator() - constructor for class org.apache.commons.collections.map.AbstractOrderedMapDecorator
Constructor only used in deserialization, do not use otherwise.
Constructor that wraps (not copies).
AbstractOrderedMapIteratorDecorator - class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Provides basic behaviour for decorating an ordered map iterator with extra functionality.
Constructor that decorates the specified iterator.
AbstractReferenceMap - class org.apache.commons.collections.map.AbstractReferenceMap
An abstract implementation of a hash-based map that allows the entries to be removed by the garbage collector.
AbstractReferenceMap() - constructor for class org.apache.commons.collections.map.AbstractReferenceMap
Constructor used during deserialization.
AbstractReferenceMap(int,int,int,float,boolean) - constructor for class org.apache.commons.collections.map.AbstractReferenceMap
Constructs a new empty map with the specified reference types, load factor and initial capacity.
Serializable subclass of AbstractCollectionDecorator.
AbstractSerializableCollectionDecorator(Collection) - constructor for class org.apache.commons.collections.collection.AbstractSerializableCollectionDecorator
Constructor.
AbstractSerializableListDecorator - class org.apache.commons.collections.list.AbstractSerializableListDecorator
Serializable subclass of AbstractListDecorator.
AbstractSerializableListDecorator(List) - constructor for class org.apache.commons.collections.list.AbstractSerializableListDecorator
Constructor.
AbstractSerializableSetDecorator - class org.apache.commons.collections.set.AbstractSerializableSetDecorator
Serializable subclass of AbstractSetDecorator.
AbstractSerializableSetDecorator(Set) - constructor for class org.apache.commons.collections.set.AbstractSerializableSetDecorator
Constructor.
AbstractSetDecorator - class org.apache.commons.collections.set.AbstractSetDecorator
Decorates another Set to provide additional behaviour.
AbstractSetDecorator() - constructor for class org.apache.commons.collections.set.AbstractSetDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractSetDecorator(Set) - constructor for class org.apache.commons.collections.set.AbstractSetDecorator
Constructor that wraps (not copies).
AbstractSortedBagDecorator - class org.apache.commons.collections.bag.AbstractSortedBagDecorator
Decorates another SortedBag to provide additional behaviour.
AbstractSortedBagDecorator() - constructor for class org.apache.commons.collections.bag.AbstractSortedBagDecorator
Constructor only used in deserialization, do not use otherwise.
Constructor that wraps (not copies).
AbstractSortedBidiMapDecorator - class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
Provides a base decorator that enables additional functionality to be added to a SortedBidiMap via decoration.
Constructor that wraps (not copies).
AbstractSortedMapDecorator - class org.apache.commons.collections.map.AbstractSortedMapDecorator
Provides a base decorator that enables additional functionality to be added to a Map via decoration.
AbstractSortedMapDecorator() - constructor for class org.apache.commons.collections.map.AbstractSortedMapDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractSortedMapDecorator(SortedMap) - constructor for class org.apache.commons.collections.map.AbstractSortedMapDecorator
Constructor that wraps (not copies).
AbstractSortedSetDecorator - class org.apache.commons.collections.set.AbstractSortedSetDecorator
Decorates another SortedSet to provide additional behaviour.
AbstractSortedSetDecorator() - constructor for class org.apache.commons.collections.set.AbstractSortedSetDecorator
Constructor only used in deserialization, do not use otherwise.
AbstractSortedSetDecorator(Set) - constructor for class org.apache.commons.collections.set.AbstractSortedSetDecorator
Constructor that wraps (not copies).
add(int,Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
add(int,Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
add(int,Object) - method in class org.apache.commons.collections.list.AbstractListDecorator
add(int,Object) - method in class org.apache.commons.collections.CursorableLinkedList
Inserts the specified element at the specified position in this list.
add(int,Object) - method in class org.apache.commons.collections.FastArrayList
Insert the specified element at the specified position in this list, and shift all remaining elements up one position.
add(int,Object) - method in class org.apache.commons.collections.list.FixedSizeList
add(int,Object) - method in class org.apache.commons.collections.set.ListOrderedSet
add(int,Object) - method in class org.apache.commons.collections.list.PredicatedList
add(int,Object) - method in class org.apache.commons.collections.list.SetUniqueList
Adds an element to a specific index in the list if it is not already present.
add(int,Object) - method in class org.apache.commons.collections.list.SynchronizedList
add(int,Object) - method in class org.apache.commons.collections.list.TransformedList
add(int,Object) - method in class org.apache.commons.collections.list.TreeList
Adds a new element to the list.
add(int,Object) - method in class org.apache.commons.collections.list.UnmodifiableList
add(Object) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
add(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
add(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
add(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
add(Object) - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
add(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag
Adds a new element to the bag, incrementing its count in the underlying map.
add(Object) - method in class org.apache.commons.collections.iterators.ArrayListIterator
This iterator does not support modification of its backing collection, and so will always throw an UnsupportedOperationException when this method is invoked.
add(Object) - method in class org.apache.commons.collections.Bag
(Violation) Adds one copy the specified object to the Bag.
add(Object) - method in class org.apache.commons.collections.BinaryHeap
Adds an object to this heap.
add(Object) - method in class org.apache.commons.collections.buffer.BlockingBuffer
add(Object) - method in class org.apache.commons.collections.BoundedFifoBuffer
Adds the given element to this buffer.
add(Object) - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Adds the given element to this buffer.
add(Object) - method in class org.apache.commons.collections.buffer.CircularFifoBuffer
If the buffer is full, the least recently added element is discarded so that a new element can be inserted.
add(Object) - method in class org.apache.commons.collections.collection.CompositeCollection
Adds an object to the collection, throwing UnsupportedOperationException unless a CollectionMutator strategy is specified.
add(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Appends the specified element to the end of this list.
add(Object) - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
add(Object) - method in class org.apache.commons.collections.list.CursorableLinkedList.Cursor
Adds an object to the list.
add(Object) - method in class org.apache.commons.collections.DefaultMapBag
Adds a new element to the bag by incrementing its count in the underlying map.
add(Object) - method in class org.apache.commons.collections.FastArrayList
Appends the specified element to the end of this list.
add(Object) - method in class org.apache.commons.collections.iterators.FilterListIterator
Not supported.
add(Object) - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Adds an item, which compares as after all items known to the Comparator.
add(Object) - method in class org.apache.commons.collections.list.FixedSizeList
add(Object) - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Throws UnsupportedOperationException.
add(Object) - method in class org.apache.commons.collections.set.ListOrderedSet
add(Object) - method in class org.apache.commons.collections.set.MapBackedSet
add(Object) - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
This iterator does not support modification of its backing array's size, and so will always throw an UnsupportedOperationException when this method is invoked.
add(Object) - method in class org.apache.commons.collections.collection.PredicatedCollection
Override to validate the object being added to ensure it matches the predicate.
add(Object) - method in class org.apache.commons.collections.list.PredicatedList.PredicatedListIterator
add(Object) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Adds an element to the buffer.
add(Object) - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.add(Object) method.
add(Object) - method in class org.apache.commons.collections.list.SetUniqueList
Adds an element to the list if it is not already present.
add(Object) - method in class org.apache.commons.collections.iterators.SingletonListIterator
Add always throws UnsupportedOperationException.
add(Object) - method in class org.apache.commons.collections.collection.SynchronizedCollection
add(Object) - method in class org.apache.commons.collections.collection.TransformedCollection
add(Object) - method in class org.apache.commons.collections.list.TransformedList.TransformedListIterator
add(Object) - method in class org.apache.commons.collections.UnboundedFifoBuffer
Adds the given element to this buffer.
add(Object) - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Adds the given element to this buffer.
add(Object) - method in class org.apache.commons.collections.bag.UnmodifiableBag
add(Object) - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
add(Object) - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
add(Object) - method in class org.apache.commons.collections.collection.UnmodifiableCollection
add(Object) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
add(Object) - method in class org.apache.commons.collections.list.UnmodifiableList
add(Object) - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
add(Object) - method in class org.apache.commons.collections.set.UnmodifiableSet
add(Object) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
add(Object) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
add(Object,int) - method in class org.apache.commons.collections.bag.AbstractBagDecorator
add(Object,int) - method in class org.apache.commons.collections.bag.AbstractMapBag
Adds a new element to the bag, incrementing its count in the map.
add(Object,int) - method in class org.apache.commons.collections.Bag
Adds nCopies copies of the specified object to the Bag.
add(Object,int) - method in class org.apache.commons.collections.DefaultMapBag
Adds a new element to the bag by incrementing its count in the map.
add(Object,int) - method in class org.apache.commons.collections.bag.PredicatedBag
Adds nCopies copies of the specified object to the Bag.
add(Object,int) - method in class org.apache.commons.collections.bag.SynchronizedBag
add(Object,int) - method in class org.apache.commons.collections.bag.TransformedBag
Adds nCopies copies of the specified object to the Bag.
add(Object,int) - method in class org.apache.commons.collections.bag.UnmodifiableBag
add(Object,int) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
Called when an object is to be added to the composite.
addAll(Collection) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
addAll(Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList
addAll(Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
addAll(Collection) - method in class org.apache.commons.collections.bag.AbstractMapBag
Invokes add(Object) for each element in the given collection.
addAll(Collection) - method in class org.apache.commons.collections.buffer.BlockingBuffer
addAll(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Adds a collection of elements to this collection, throwing UnsupportedOperationException unless a CollectionMutator strategy is specified.
addAll(Collection) - method in class org.apache.commons.collections.CursorableLinkedList
Appends all of the elements in the specified collection to the end of this list, in the order that they are returned by the specified Collection's Iterator.
addAll(Collection) - method in class org.apache.commons.collections.DefaultMapBag
Invokes add(Object) for each element in the given collection.
addAll(Collection) - method in class org.apache.commons.collections.FastArrayList
Append all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator.
addAll(Collection) - method in class org.apache.commons.collections.list.FixedSizeList
addAll(Collection) - method in class org.apache.commons.collections.set.ListOrderedSet
addAll(Collection) - method in class org.apache.commons.collections.set.MapBackedSet
addAll(Collection) - method in class org.apache.commons.collections.collection.PredicatedCollection
Override to validate the objects being added to ensure they match the predicate.
addAll(Collection) - method in class org.apache.commons.collections.list.SetUniqueList
Adds an element to the end of the list if it is not already present.
addAll(Collection) - method in class org.apache.commons.collections.collection.SynchronizedCollection
addAll(Collection) - method in class org.apache.commons.collections.collection.TransformedCollection
addAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableBag
addAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
addAll(Collection) - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
addAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableCollection
addAll(Collection) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
addAll(Collection) - method in class org.apache.commons.collections.list.UnmodifiableList
addAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSet
addAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
addAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
addAll(Collection,Enumeration) - static method in class org.apache.commons.collections.CollectionUtils
Adds all elements in the enumeration to the given collection.
addAll(Collection,Iterator) - static method in class org.apache.commons.collections.CollectionUtils
Adds all elements in the iteration to the given collection.
addAll(Collection,Object[]) - static method in class org.apache.commons.collections.CollectionUtils
Adds all elements in the array to the given collection.
addAll(int,Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList
addAll(int,Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
addAll(int,Collection) - method in class org.apache.commons.collections.list.AbstractListDecorator
addAll(int,Collection) - method in class org.apache.commons.collections.CursorableLinkedList
Inserts all of the elements in the specified collection into this list at the specified position.
addAll(int,Collection) - method in class org.apache.commons.collections.FastArrayList
Insert all of the elements in the specified Collection at the specified position in this list, and shift any previous elements upwards as needed.
addAll(int,Collection) - method in class org.apache.commons.collections.list.FixedSizeList
addAll(int,Collection) - method in class org.apache.commons.collections.set.ListOrderedSet
addAll(int,Collection) - method in class org.apache.commons.collections.list.PredicatedList
addAll(int,Collection) - method in class org.apache.commons.collections.list.SetUniqueList
Adds a collection of objects to the end of the list avoiding duplicates.
addAll(int,Collection) - method in class org.apache.commons.collections.list.SynchronizedList
addAll(int,Collection) - method in class org.apache.commons.collections.list.TransformedList
addAll(int,Collection) - method in class org.apache.commons.collections.list.UnmodifiableList
Called when a collection is to be added to the composite.
addAsEqual(Object,Object) - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Adds a new item, which compares as equal to the given existing item.
addComparator(Comparator) - method in class org.apache.commons.collections.comparators.ComparatorChain
Add a Comparator to the end of the chain using the forward sort order
addComparator(Comparator,boolean) - method in class org.apache.commons.collections.comparators.ComparatorChain
Add a Comparator to the end of the chain using the given sort order
addComposited(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Add an additional collection to this composite.
addComposited(Collection) - method in class org.apache.commons.collections.set.CompositeSet
Add a Set to this composite
addComposited(Collection,Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Add two additional collections to this composite.
addComposited(Collection,Collection) - method in class org.apache.commons.collections.set.CompositeSet
Add two sets to this composite
addComposited(Collection[]) - method in class org.apache.commons.collections.collection.CompositeCollection
Add these Collections to the list of collections in this composite
addComposited(Collection[]) - method in class org.apache.commons.collections.set.CompositeSet
Add an array of sets to this composite
addComposited(Map) - method in class org.apache.commons.collections.map.CompositeMap
Add an additional Map to the composite.
Adds an entry into this map.
Adds an entry into this map, maintaining insertion order.
addFirst(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
addFirst(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Inserts the specified element at the beginning of this list.
addIterator(Iterator) - method in class org.apache.commons.collections.iterators.CollatingIterator
Adds the given Iterator to the iterators being collated.
addIterator(Iterator) - method in class org.apache.commons.collections.iterators.IteratorChain
Add an Iterator to the end of the chain
addLast(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
addLast(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Inserts the specified element at the end of this list.
addMapping(int,int,Object,Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Adds a new key-value mapping into this map.
addMapping(int,int,Object,Object) - method in class org.apache.commons.collections.map.LRUMap
Adds a new key-value mapping into this map.
Inserts a new node into the list.
Inserts a new node into the list.
Creates a new node with the specified object as its value and inserts it after node.
Creates a new node with the specified object as its value and inserts it before node.
Adds a node to the cache, if the cache isn't full.
addProperty(String,Object) - method in class org.apache.commons.collections.ExtendedProperties
Add a property to the configuration.
after - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry
The entry after this one in the order
all - field in class org.apache.commons.collections.collection.CompositeCollection
Collections in the composite
AllPredicate - class org.apache.commons.collections.functors.AllPredicate
Predicate implementation that returns true if all the predicates return true.
allPredicate(Collection) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true only if all of the specified predicates are true.
AllPredicate(org.apache.commons.collections.Predicate[]) - constructor for class org.apache.commons.collections.functors.AllPredicate
Constructor that performs no validation.
allPredicate(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true only if all of the specified predicates are true.
AndPredicate - class org.apache.commons.collections.functors.AndPredicate
Predicate implementation that returns true if both the predicates return true.
Constructor that performs no validation.
Create a new Predicate that returns true only if both of the specified predicates are true.
AnyPredicate - class org.apache.commons.collections.functors.AnyPredicate
Predicate implementation that returns true if any of the predicates return true.
anyPredicate(Collection) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if any of the specified predicates are true.
AnyPredicate(org.apache.commons.collections.Predicate[]) - constructor for class org.apache.commons.collections.functors.AnyPredicate
Constructor that performs no validation.
anyPredicate(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if any of the specified predicates are true.
array - field in class org.apache.commons.collections.iterators.ArrayIterator
The array to iterate over
array - field in class org.apache.commons.collections.iterators.ObjectArrayIterator
The array
ArrayIterator - class org.apache.commons.collections.iterators.ArrayIterator
Implements an Iterator over any array.
ArrayIterator() - constructor for class org.apache.commons.collections.iterators.ArrayIterator
Constructor for use with setArray.
ArrayIterator(Object) - constructor for class org.apache.commons.collections.iterators.ArrayIterator
Constructs an ArrayIterator that will iterate over the values in the specified array.
arrayIterator(Object) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over an object or primitive array.
ArrayIterator(Object,int) - constructor for class org.apache.commons.collections.iterators.ArrayIterator
Constructs an ArrayIterator that will iterate over the values in the specified array from a specific start index.
arrayIterator(Object,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over the end part of an object or primitive array.
ArrayIterator(Object,int,int) - constructor for class org.apache.commons.collections.iterators.ArrayIterator
Construct an ArrayIterator that will iterate over a range of values in the specified array.
arrayIterator(Object,int,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over part of an object or primitive array.
arrayIterator(Object[]) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over an object array.
arrayIterator(Object[],int) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over the end part of an object array.
arrayIterator(Object[],int,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator over part of an object array.
ArrayListIterator - class org.apache.commons.collections.iterators.ArrayListIterator
Implements a ListIterator over an array.
ArrayListIterator() - constructor for class org.apache.commons.collections.iterators.ArrayListIterator
Constructor for use with setArray.
ArrayListIterator(Object) - constructor for class org.apache.commons.collections.iterators.ArrayListIterator
Constructs an ArrayListIterator that will iterate over the values in the specified array.
arrayListIterator(Object) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over an object or primitive array.
ArrayListIterator(Object,int) - constructor for class org.apache.commons.collections.iterators.ArrayListIterator
Constructs an ArrayListIterator that will iterate over the values in the specified array from a specific start index.
arrayListIterator(Object,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over the end part of an object or primitive array.
ArrayListIterator(Object,int,int) - constructor for class org.apache.commons.collections.iterators.ArrayListIterator
Construct an ArrayListIterator that will iterate over a range of values in the specified array.
arrayListIterator(Object,int,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over part of an object or primitive array.
arrayListIterator(Object[]) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over an object array.
arrayListIterator(Object[],int) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over the end part of an object array.
arrayListIterator(Object[],int,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator over part of an object array.
ArrayStack - class org.apache.commons.collections.ArrayStack
An implementation of the java.util.Stack API that is based on an ArrayList instead of a Vector, so it is not synchronized to protect against multi-threaded access.
ArrayStack() - constructor for class org.apache.commons.collections.ArrayStack
Constructs a new empty ArrayStack.
ArrayStack(int) - constructor for class org.apache.commons.collections.ArrayStack
Constructs a new empty ArrayStack with an initial size.
ascendingOrder - field in class org.apache.commons.collections.buffer.PriorityBuffer
If true, the first element as determined by the sort order will be returned.
asClosure(org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.ClosureUtils
Creates a Closure that calls a Transformer each time it is called.
asEnumeration(Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an enumeration that wraps an iterator.
asIterator(Enumeration) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that provides an iterator view of the given enumeration.
asIterator(Enumeration,Collection) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that provides an iterator view of the given enumeration that will remove elements from the specified collection.
asList() - method in class org.apache.commons.collections.map.LinkedMap
Gets an unmodifiable List view of the keys.
asList() - method in class org.apache.commons.collections.map.ListOrderedMap
Gets an unmodifiable List view of the keys which changes as the map changes.
asList() - method in class org.apache.commons.collections.set.ListOrderedSet
Gets an unmodifiable view of the order of the Set.
asPredicate(org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that wraps a Transformer.
asSet() - method in class org.apache.commons.collections.list.SetUniqueList
Gets an unmodifiable view as a Set.
asTransformer(org.apache.commons.collections.Closure) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that calls a Closure each time the transformer is used.
asTransformer(org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that calls a Factory each time the transformer is used.
asTransformer(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that calls a Predicate each time the transformer is used.
atomic(Runnable) - method in class org.apache.commons.collections.StaticBucketMap
Prevents any operations from occurring on this map while the given Runnable executes.
atomic(Runnable) - method in class org.apache.commons.collections.map.StaticBucketMap
Prevents any operations from occurring on this map while the given Runnable executes.

B

Bag - interface org.apache.commons.collections.Bag
Defines a collection that counts the number of times an object appears in the collection.
BagUtils - class org.apache.commons.collections.BagUtils
Provides utility methods and decorators for Bag and SortedBag instances.
BagUtils() - constructor for class org.apache.commons.collections.BagUtils
Instantiation of BagUtils is not intended or required.
basePath - field in class org.apache.commons.collections.ExtendedProperties
Base path of the configuration file used to create this ExtendedProperties object.
BeanMap - class org.apache.commons.collections.BeanMap
An implementation of Map for JavaBeans which uses introspection to get and put properties in the bean.
BeanMap() - constructor for class org.apache.commons.collections.BeanMap
Constructs a new empty BeanMap.
BeanMap(Object) - constructor for class org.apache.commons.collections.BeanMap
Constructs a new BeanMap that operates on the specified bean.
before - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry
The entry before this one in the order
BidiMap - interface org.apache.commons.collections.BidiMap
Defines a map that allows bidirectional lookup between key and values.
AbstractDualBidiMap.BidiMapIterator - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Inner class MapIterator.
Constructor.
Inner class MapIterator.
Constructor.
BinaryHeap - class org.apache.commons.collections.BinaryHeap
Binary heap implementation of PriorityQueue.
BinaryHeap() - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new minimum binary heap.
BinaryHeap(boolean) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new minimum or maximum binary heap
BinaryHeap(boolean,Comparator) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new BinaryHeap.
BinaryHeap(Comparator) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new BinaryHeap that will use the given comparator to order its elements.
BinaryHeap(int) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new minimum binary heap with the specified initial capacity.
BinaryHeap(int,boolean) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new minimum or maximum binary heap with the specified initial capacity.
BinaryHeap(int,boolean,Comparator) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new BinaryHeap.
BinaryHeap(int,Comparator) - constructor for class org.apache.commons.collections.BinaryHeap
Constructs a new BinaryHeap.
BlockingBuffer - class org.apache.commons.collections.buffer.BlockingBuffer
Decorates another Buffer to make get() and remove() block when the Buffer is empty.
BlockingBuffer(org.apache.commons.collections.Buffer) - constructor for class org.apache.commons.collections.buffer.BlockingBuffer
Constructor that wraps (not copies).
blockingBuffer(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.BufferUtils
Returns a synchronized buffer backed by the given buffer that will block on Buffer.get() and Buffer.remove() operations.
BooleanComparator - class org.apache.commons.collections.comparators.BooleanComparator
A Comparator for Boolean objects that can sort either true or false first.
BooleanComparator() - constructor for class org.apache.commons.collections.comparators.BooleanComparator
Creates a BooleanComparator that sorts false values before true values.
BooleanComparator(boolean) - constructor for class org.apache.commons.collections.comparators.BooleanComparator
Creates a BooleanComparator that sorts trueFirst values before !trueFirst values.
booleanComparator(boolean) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a Comparator that can sort Boolean objects.
BoundedCollection - interface org.apache.commons.collections.BoundedCollection
Defines a collection that is bounded in size.
BoundedFifoBuffer - class org.apache.commons.collections.BoundedFifoBuffer
The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime.
BoundedFifoBuffer - class org.apache.commons.collections.buffer.BoundedFifoBuffer
The BoundedFifoBuffer is a very efficient implementation of Buffer that does not alter the size of the buffer at runtime.
BoundedFifoBuffer() - constructor for class org.apache.commons.collections.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold 32 elements.
BoundedFifoBuffer() - constructor for class org.apache.commons.collections.buffer.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold 32 elements.
BoundedFifoBuffer(Collection) - constructor for class org.apache.commons.collections.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold all of the elements in the specified collection.
BoundedFifoBuffer(Collection) - constructor for class org.apache.commons.collections.buffer.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold all of the elements in the specified collection.
BoundedFifoBuffer(int) - constructor for class org.apache.commons.collections.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold the specified number of elements.
BoundedFifoBuffer(int) - constructor for class org.apache.commons.collections.buffer.BoundedFifoBuffer
Constructs a new BoundedFifoBuffer big enough to hold the specified number of elements.
BoundedMap - interface org.apache.commons.collections.BoundedMap
Defines a map that is bounded in size.
Informs all of my registered cursors that the specified element was changed.
Informs all of my registered cursors that the specified element was just added to my list.
Informs all of my registered cursors that the specified element was just removed from my list.
Informs all of my registered cursors that the specified element was changed.
Informs all of my registered cursors that the specified element was just added to my list.
Informs all of my registered cursors that the specified element was just removed from my list.
Buffer - interface org.apache.commons.collections.Buffer
Defines a collection that allows objects to be removed in some well-defined order.
buffer - field in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
The array of objects in the buffer.
BufferOverflowException - class org.apache.commons.collections.BufferOverflowException
The BufferOverflowException is used when the buffer's capacity has been exceeded.
BufferOverflowException() - constructor for class org.apache.commons.collections.BufferOverflowException
Constructs a new BufferOverflowException.
BufferOverflowException(String) - constructor for class org.apache.commons.collections.BufferOverflowException
Construct a new BufferOverflowException.
BufferOverflowException(String,Throwable) - constructor for class org.apache.commons.collections.BufferOverflowException
Construct a new BufferOverflowException.
BufferUnderflowException - class org.apache.commons.collections.BufferUnderflowException
The BufferUnderflowException is used when the buffer is already empty.
BufferUnderflowException() - constructor for class org.apache.commons.collections.BufferUnderflowException
Constructs a new BufferUnderflowException.
BufferUnderflowException(String) - constructor for class org.apache.commons.collections.BufferUnderflowException
Construct a new BufferUnderflowException.
BufferUnderflowException(String,Throwable) - constructor for class org.apache.commons.collections.BufferUnderflowException
Construct a new BufferUnderflowException.
BufferUtils - class org.apache.commons.collections.BufferUtils
Provides utility methods and decorators for Buffer instances.
BufferUtils() - constructor for class org.apache.commons.collections.BufferUtils
BufferUtils should not normally be instantiated.

C

cacheSize - field in class org.apache.commons.collections.list.NodeCachingLinkedList
The size of the cache.
calcTotalSize() - method in class org.apache.commons.collections.DefaultMapBag
Actually walks the bag to make sure the count is correct and resets the running total
calculateNewCapacity(int) - method in class org.apache.commons.collections.map.AbstractHashedMap
Calculates the new capacity of the map.
calculateThreshold(int,float) - method in class org.apache.commons.collections.map.AbstractHashedMap
Calculates the new threshold of the map, where it will be resized.
canRemove - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Whether remove is allowed at present
canRemove - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
Whether remove is allowed at present
canRemove - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
Whether remove is allowed at present
canRemove - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
Whether remove is allowed at present
cardinality(Object,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns the number of occurrences of obj in coll.
CaseInsensitiveMap - class org.apache.commons.collections.map.CaseInsensitiveMap
A case-insensitive Map.
CaseInsensitiveMap() - constructor for class org.apache.commons.collections.map.CaseInsensitiveMap
Constructs a new empty map with default size and load factor.
CaseInsensitiveMap(int) - constructor for class org.apache.commons.collections.map.CaseInsensitiveMap
Constructs a new, empty map with the specified initial capacity.
CaseInsensitiveMap(int,float) - constructor for class org.apache.commons.collections.map.CaseInsensitiveMap
Constructs a new, empty map with the specified initial capacity and load factor.
CaseInsensitiveMap(Map) - constructor for class org.apache.commons.collections.map.CaseInsensitiveMap
Constructor copying elements from another map.
ChainedClosure - class org.apache.commons.collections.functors.ChainedClosure
Closure implementation that chains the specified closures together.
chainedClosure(Collection) - static method in class org.apache.commons.collections.ClosureUtils
Create a new Closure that calls each closure in turn, passing the result into the next closure.
Create a new Closure that calls two Closures, passing the result of the first into the second.
ChainedClosure(org.apache.commons.collections.Closure[]) - constructor for class org.apache.commons.collections.functors.ChainedClosure
Constructor that performs no validation.
chainedClosure(org.apache.commons.collections.Closure[]) - static method in class org.apache.commons.collections.ClosureUtils
Create a new Closure that calls each closure in turn, passing the result into the next closure.
chainedComparator(Collection) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a comparator that compares using a collection of Comparators, applied in (default iterator) sequence until one returns not equal or the collection is exhausted.
chainedComparator(Comparator,Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a comparator that compares using two Comparators.
chainedComparator(Comparator[]) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a comparator that compares using an array of Comparators, applied in sequence until one returns not equal or the array is exhausted.
chainedIterator(Collection) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that iterates through a collections of Iterators one after another.
chainedIterator(Iterator,Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that iterates through two Iterators one after another.
chainedIterator(Iterator[]) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that iterates through an array of Iterators one after another.
ChainedTransformer - class org.apache.commons.collections.functors.ChainedTransformer
Transformer implementation that chains the specified transformers together.
chainedTransformer(Collection) - static method in class org.apache.commons.collections.TransformerUtils
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
Create a new Transformer that calls two transformers, passing the result of the first into the second.
ChainedTransformer(org.apache.commons.collections.Transformer[]) - constructor for class org.apache.commons.collections.functors.ChainedTransformer
Constructor that performs no validation.
chainedTransformer(org.apache.commons.collections.Transformer[]) - static method in class org.apache.commons.collections.TransformerUtils
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
checkBound(int,String) - method in class org.apache.commons.collections.iterators.ArrayIterator
Checks whether the index is valid or not.
checkCapacity() - method in class org.apache.commons.collections.map.AbstractHashedMap
Checks the capacity of the map and enlarges it if necessary.
checkForComod() - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
checkKey(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Check to ensure that input keys are valid MultiKey objects.
checkLocked() - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Checks to see whether the comparator is now locked against further changes.
checkModCount() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
Checks the modification count of the list is the value that this object expects.
checkModCount() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
checkModCount() - method in class org.apache.commons.collections.list.CursorableLinkedList.Cursor
Override superclass modCount check, and replace it with our valid flag.
checkSetValue(Object) - method in class org.apache.commons.collections.map.PredicatedMap
Override to validate an object set into the map via setValue.
checkSetValue(Object) - method in class org.apache.commons.collections.map.TransformedMap
Override to transform the value when using setValue.
CircularFifoBuffer - class org.apache.commons.collections.buffer.CircularFifoBuffer
CircularFifoBuffer is a first in first out buffer with a fixed size that replaces its oldest element if full.
CircularFifoBuffer() - constructor for class org.apache.commons.collections.buffer.CircularFifoBuffer
Constructor that creates a buffer with the default size of 32.
CircularFifoBuffer(Collection) - constructor for class org.apache.commons.collections.buffer.CircularFifoBuffer
Constructor that creates a buffer from the specified collection.
CircularFifoBuffer(int) - constructor for class org.apache.commons.collections.buffer.CircularFifoBuffer
Constructor that creates a buffer with the specified size.
clear() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
clear() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
clear() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.View
clear() - method in class org.apache.commons.collections.map.AbstractHashedMap
Clears the map, resetting the size to zero and nullifying references to avoid garbage collection issues.
clear() - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
clear() - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
clear() - method in class org.apache.commons.collections.map.AbstractHashedMap.Values
clear() - method in class org.apache.commons.collections.list.AbstractLinkedList
clear() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
clear() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Clears the map, resetting the size to zero and nullifying references to avoid garbage collection issues.
clear() - method in class org.apache.commons.collections.bag.AbstractMapBag
Clears the bag by clearing the underlying map.
clear() - method in class org.apache.commons.collections.map.AbstractMapDecorator
clear() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Clears this map.
clear() - method in class org.apache.commons.collections.BeanMap
This method reinitializes the bean map to have default values for the bean's properties.
clear() - method in class org.apache.commons.collections.BinaryHeap
Clears all elements from queue.
clear() - method in class org.apache.commons.collections.BoundedFifoBuffer
Clears this buffer.
clear() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Clears this buffer.
clear() - method in class org.apache.commons.collections.collection.CompositeCollection
Removes all of the elements from this collection .
clear() - method in class org.apache.commons.collections.map.CompositeMap
Calls clear() on all composited Maps.
clear() - method in class org.apache.commons.collections.CursorableLinkedList
Removes all of the elements from this list.
clear() - method in class org.apache.commons.collections.DefaultMapBag
Clears the bag by clearing the underlying map.
clear() - method in class org.apache.commons.collections.DoubleOrderedMap
Removes all mappings from this map
clear() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
clear() - method in class org.apache.commons.collections.FastArrayList
Remove all of the elements from this list.
clear() - method in class org.apache.commons.collections.FastHashMap
Remove all mappings from this map.
clear() - method in class org.apache.commons.collections.FastTreeMap
Remove all mappings from this map.
clear() - method in class org.apache.commons.collections.list.FixedSizeList
clear() - method in class org.apache.commons.collections.map.FixedSizeMap
clear() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
clear() - method in class org.apache.commons.collections.map.Flat3Map
Clears the map, resetting the size to zero and nullifying references to avoid garbage collection issues.
clear() - method in class org.apache.commons.collections.map.ListOrderedMap
clear() - method in class org.apache.commons.collections.set.ListOrderedSet
clear() - method in class org.apache.commons.collections.set.MapBackedSet
clear() - method in class org.apache.commons.collections.MultiHashMap
Clear the map.
clear() - method in class org.apache.commons.collections.map.MultiKeyMap
clear() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Clears all elements from the buffer.
clear() - method in class org.apache.commons.collections.PriorityQueue
Clear all elements from queue.
clear() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.clear() method.
clear() - method in class org.apache.commons.collections.ReferenceMap
Clears this map.
clear() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.clear().
clear() - method in class org.apache.commons.collections.list.SetUniqueList
clear() - method in class org.apache.commons.collections.map.SingletonMap
Unsupported operation.
clear() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.clear().
clear() - method in class org.apache.commons.collections.map.StaticBucketMap
Clears the map of all entries.
clear() - method in class org.apache.commons.collections.collection.SynchronizedCollection
clear() - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Clear all elements from queue.
clear() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Removes all mappings from this map.
clear() - method in class org.apache.commons.collections.list.TreeList
Clears the list, removing all entries.
clear() - method in class org.apache.commons.collections.bag.UnmodifiableBag
clear() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
clear() - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
clear() - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
clear() - method in class org.apache.commons.collections.collection.UnmodifiableCollection
clear() - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
clear() - method in class org.apache.commons.collections.list.UnmodifiableList
clear() - method in class org.apache.commons.collections.map.UnmodifiableMap
clear() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
clear() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
clear() - method in class org.apache.commons.collections.set.UnmodifiableSet
clear() - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
clear() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
clear() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
clear() - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
clearProperty(String) - method in class org.apache.commons.collections.ExtendedProperties
Clear a property in the configuration.
clone() - method in class org.apache.commons.collections.map.AbstractHashedMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.BeanMap
Clone this bean map using the following process:
  • If there is no underlying bean, return a cloned BeanMap without a bean.
clone() - method in class org.apache.commons.collections.map.CaseInsensitiveMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.FastArrayList
Return a shallow copy of this FastArrayList instance.
clone() - method in class org.apache.commons.collections.FastHashMap
Return a shallow copy of this FastHashMap instance.
clone() - method in class org.apache.commons.collections.FastTreeMap
Return a shallow copy of this FastTreeMap instance.
clone() - method in class org.apache.commons.collections.map.Flat3Map
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.map.HashedMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.map.IdentityMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.map.LinkedMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.map.LRUMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.MultiHashMap
Clones the map creating an independent copy.
clone() - method in class org.apache.commons.collections.map.MultiKeyMap
Clones the map without cloning the keys or values.
clone() - method in class org.apache.commons.collections.SequencedHashMap
Creates a shallow copy of this object, preserving the internal structure by copying only references.
clone() - method in class org.apache.commons.collections.map.SingletonMap
Clones the map without cloning the key or value.
CloneTransformer - class org.apache.commons.collections.functors.CloneTransformer
Transformer implementation that returns a clone of the input object.
cloneTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a transformer that returns a clone of the input object.
close() - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
Mark this cursor as no longer being needed.
close() - method in class org.apache.commons.collections.list.CursorableLinkedList.Cursor
Mark this cursor as no longer being needed.
Closure - interface org.apache.commons.collections.Closure
Defines a functor interface implemented by classes that do something.
ClosureTransformer - class org.apache.commons.collections.functors.ClosureTransformer
Transformer implementation that calls a Closure using the input object and then returns the input.
ClosureTransformer(org.apache.commons.collections.Closure) - constructor for class org.apache.commons.collections.functors.ClosureTransformer
Constructor that performs no validation.
ClosureUtils - class org.apache.commons.collections.ClosureUtils
ClosureUtils provides reference implementations and utilities for the Closure functor interface.
ClosureUtils() - constructor for class org.apache.commons.collections.ClosureUtils
This class is not normally instantiated.
collatedIterator(Comparator,Collection) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that provides an ordered iteration over the elements contained in a collection of Iterators.
collatedIterator(Comparator,Iterator,Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that provides an ordered iteration over the elements contained in a collection of ordered Iterators.
collatedIterator(Comparator,Iterator[]) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that provides an ordered iteration over the elements contained in an array of Iterators.
CollatingIterator - class org.apache.commons.collections.iterators.CollatingIterator
Provides an ordered iteration over the elements contained in a collection of ordered Iterators.
CollatingIterator() - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator.
CollatingIterator(Comparator) - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator that will used the specified comparator for ordering.
CollatingIterator(Comparator,Collection) - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator that will use the specified comparator to provide ordered iteration over the collection of iterators.
CollatingIterator(Comparator,int) - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator that will used the specified comparator for ordering and have the specified initial capacity.
CollatingIterator(Comparator,Iterator,Iterator) - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator that will use the specified comparator to provide ordered iteration over the two given iterators.
CollatingIterator(Comparator,Iterator[]) - constructor for class org.apache.commons.collections.iterators.CollatingIterator
Constructs a new CollatingIterator that will use the specified comparator to provide ordered iteration over the array of iterators.
collect(Collection,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.CollectionUtils
Returns a new Collection consisting of the elements of inputCollection transformed by the given transformer.
Transforms all elements from inputCollection with the given transformer and adds them to the outputCollection.
collect(Iterator,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.CollectionUtils
Transforms all elements from the inputIterator with the given transformer and adds them to the outputCollection.
Transforms all elements from the inputIterator with the given transformer and adds them to the outputCollection.
collection - field in class org.apache.commons.collections.collection.AbstractCollectionDecorator
The collection being decorated
collection - field in class org.apache.commons.collections.collection.SynchronizedCollection
The collection to decorate
CompositeCollection.CollectionMutator - interface org.apache.commons.collections.collection.CompositeCollection.CollectionMutator
Pluggable strategy to handle changes to the composite.
CollectionUtils - class org.apache.commons.collections.CollectionUtils
Provides utility methods and decorators for Collection instances.
CollectionUtils() - constructor for class org.apache.commons.collections.CollectionUtils
CollectionUtils should not normally be instantiated.
Combines an existing Hashtable with this Hashtable.
ComparableComparator - class org.apache.commons.collections.comparators.ComparableComparator
A Comparator that compares Comparable objects.
ComparableComparator() - constructor for class org.apache.commons.collections.comparators.ComparableComparator
Constructor whose use should be avoided.
comparator - field in class org.apache.commons.collections.bidimap.DualTreeBidiMap
The comparator to use
comparator - field in class org.apache.commons.collections.buffer.PriorityBuffer
The comparator used to order the elements
comparator() - method in class org.apache.commons.collections.bag.AbstractSortedBagDecorator
comparator() - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
comparator() - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
comparator() - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
comparator() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
comparator() - method in class org.apache.commons.collections.FastTreeMap
Return the comparator used to order this map, or null if this map uses its keys' natural order.
comparator() - method in class org.apache.commons.collections.map.LazySortedMap
comparator() - method in class org.apache.commons.collections.bag.PredicatedSortedBag
comparator() - method in class org.apache.commons.collections.map.PredicatedSortedMap
comparator() - method in class org.apache.commons.collections.set.PredicatedSortedSet
comparator() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Gets the comparator being used for this buffer, null is natural order.
comparator() - method in class org.apache.commons.collections.SortedBag
Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.
comparator() - method in class org.apache.commons.collections.bag.SynchronizedSortedBag
comparator() - method in class org.apache.commons.collections.set.SynchronizedSortedSet
comparator() - method in class org.apache.commons.collections.bag.TransformedSortedBag
comparator() - method in class org.apache.commons.collections.map.TransformedSortedMap
comparator() - method in class org.apache.commons.collections.set.TransformedSortedSet
comparator() - method in class org.apache.commons.collections.TreeBag
Returns the comparator associated with this sorted set, or null if it uses its elements' natural ordering.
comparator() - method in class org.apache.commons.collections.bag.TreeBag
comparator() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
comparatorChain - field in class org.apache.commons.collections.comparators.ComparatorChain
The list of comparators in the chain.
ComparatorChain - class org.apache.commons.collections.comparators.ComparatorChain
A ComparatorChain is a Comparator that wraps one or more Comparators in sequence.
ComparatorChain() - constructor for class org.apache.commons.collections.comparators.ComparatorChain
Construct a ComparatorChain with no Comparators.
ComparatorChain(Comparator) - constructor for class org.apache.commons.collections.comparators.ComparatorChain
Construct a ComparatorChain with a single Comparator, sorting in the forward order
ComparatorChain(Comparator,boolean) - constructor for class org.apache.commons.collections.comparators.ComparatorChain
Construct a Comparator chain with a single Comparator, sorting in the given order
ComparatorChain(List) - constructor for class org.apache.commons.collections.comparators.ComparatorChain
Construct a ComparatorChain from the Comparators in the List.
ComparatorChain(List,BitSet) - constructor for class org.apache.commons.collections.comparators.ComparatorChain
Construct a ComparatorChain from the Comparators in the given List.
ComparatorUtils - class org.apache.commons.collections.ComparatorUtils
Provides convenient static utility methods for Comparator objects.
ComparatorUtils() - constructor for class org.apache.commons.collections.ComparatorUtils
ComparatorUtils should not normally be instantiated.
compare(Boolean,Boolean) - method in class org.apache.commons.collections.comparators.BooleanComparator
Compares two non-null Boolean objects according to the value of trueFirst.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.BooleanComparator
Compares two arbitrary Objects.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.ComparableComparator
Compare the two Comparable arguments.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.ComparatorChain
Perform comparisons on the Objects as per Comparator.compare(o1,o2).
compare(Object,Object) - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Compares two objects according to the order of this Comparator.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.NullComparator
Perform a comparison between two objects.
compare(Object,Object) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Compares two objects using the comparator if specified, or the natural order otherwise.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.ReverseComparator
Compares two objects in reverse order.
compare(Object,Object) - method in class org.apache.commons.collections.comparators.TransformingComparator
Returns the result of comparing the values from the transform operation.
CompositeCollection - class org.apache.commons.collections.collection.CompositeCollection
Decorates a collection of other collections to provide a single unified view.
CompositeCollection() - constructor for class org.apache.commons.collections.collection.CompositeCollection
Create an empty CompositeCollection.
CompositeCollection(Collection) - constructor for class org.apache.commons.collections.collection.CompositeCollection
Create a Composite Collection with only coll composited.
CompositeCollection(Collection[]) - constructor for class org.apache.commons.collections.collection.CompositeCollection
Create a CompositeCollection with colls as the initial list of composited collections.
CompositeMap - class org.apache.commons.collections.map.CompositeMap
Decorates a map of other maps to provide a single unified view.
CompositeMap() - constructor for class org.apache.commons.collections.map.CompositeMap
Create a new, empty, CompositeMap.
CompositeMap(Map,Map) - constructor for class org.apache.commons.collections.map.CompositeMap
Create a new CompositeMap with two composited Map instances.
Create a new CompositeMap with two composited Map instances.
CompositeMap(Map[]) - constructor for class org.apache.commons.collections.map.CompositeMap
Create a new CompositeMap which composites all of the Map instances in the argument.
CompositeMap(Map[],org.apache.commons.collections.map.CompositeMap.MapMutator) - constructor for class org.apache.commons.collections.map.CompositeMap
Create a new CompositeMap which composites all of the Map instances in the argument.
CompositeSet - class org.apache.commons.collections.set.CompositeSet
Decorates a set of other sets to provide a single unified view.
CompositeSet() - constructor for class org.apache.commons.collections.set.CompositeSet
Create an empty CompositeSet
CompositeSet(Set) - constructor for class org.apache.commons.collections.set.CompositeSet
Create a CompositeSet with just set composited
CompositeSet(Set[]) - constructor for class org.apache.commons.collections.set.CompositeSet
Create a composite set with sets as the initial set of composited Sets
ConstantFactory - class org.apache.commons.collections.functors.ConstantFactory
Factory implementation that returns the same constant each time.
ConstantFactory(Object) - constructor for class org.apache.commons.collections.functors.ConstantFactory
Constructor that performs no validation.
constantFactory(Object) - static method in class org.apache.commons.collections.FactoryUtils
Creates a Factory that will return the same object each time the factory is used.
ConstantTransformer - class org.apache.commons.collections.functors.ConstantTransformer
Transformer implementation that returns the same constant each time.
ConstantTransformer(Object) - constructor for class org.apache.commons.collections.functors.ConstantTransformer
Constructor that performs no validation.
constantTransformer(Object) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that will return the same object each time the transformer is used.
contains(Object) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
contains(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySet
contains(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.Values
contains(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
contains(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
contains(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.Values
contains(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
contains(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag
Determines if the bag contains the given element by checking if the underlying map contains the element as a key.
contains(Object) - method in class org.apache.commons.collections.collection.CompositeCollection
Checks whether this composite collection contains the object.
contains(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Returns true if this list contains the specified element.
contains(Object) - method in class org.apache.commons.collections.DefaultMapBag
Determines if the bag contains the given element by checking if the underlying map contains the element as a key.
contains(Object) - method in class org.apache.commons.collections.FastArrayList
Return true if this list contains the specified element.
contains(Object) - method in class org.apache.commons.collections.set.MapBackedSet
contains(Object) - method in class org.apache.commons.collections.list.SetUniqueList
contains(Object) - method in class org.apache.commons.collections.collection.SynchronizedCollection
contains(Object) - method in class org.apache.commons.collections.list.TreeList
Searches for the presence of an object in the list.
containsAll(Collection) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
containsAll(Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList
containsAll(Collection) - method in class org.apache.commons.collections.bag.AbstractMapBag
Determines if the bag contains the given elements.
containsAll(Collection) - method in class org.apache.commons.collections.Bag
(Violation) Returns true if the bag contains all elements in the given collection, respecting cardinality.
containsAll(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Checks whether this composite contains all the elements in the specified collection.
containsAll(Collection) - method in class org.apache.commons.collections.CursorableLinkedList
Returns true if this list contains all of the elements of the specified collection.
containsAll(Collection) - method in class org.apache.commons.collections.DefaultMapBag
Determines if the bag contains the given elements.
containsAll(Collection) - method in class org.apache.commons.collections.FastArrayList
Return true if this list contains all of the elements in the specified Collection.
containsAll(Collection) - method in class org.apache.commons.collections.set.MapBackedSet
containsAll(Collection) - method in class org.apache.commons.collections.list.SetUniqueList
containsAll(Collection) - method in class org.apache.commons.collections.collection.SynchronizedCollection
containsAll(org.apache.commons.collections.Bag) - method in class org.apache.commons.collections.DefaultMapBag
Returns true if the bag contains all elements in the given collection, respecting cardinality.
containsAny(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns true iff at least one element is in both collections.
containsKey(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
containsKey(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Checks whether the map contains the specified key.
containsKey(Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
containsKey(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Checks whether the map contains the specified key.
containsKey(Object) - method in class org.apache.commons.collections.BeanMap
Returns true if the bean defines a property with the given name.
containsKey(Object) - method in class org.apache.commons.collections.map.CompositeMap
Returns true if this map contains a mapping for the specified key.
containsKey(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Returns true if this map contains a mapping for the specified key.
containsKey(Object) - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains a mapping for the specified key.
containsKey(Object) - method in class org.apache.commons.collections.FastTreeMap
Return true if this map contains a mapping for the specified key.
containsKey(Object) - method in class org.apache.commons.collections.map.Flat3Map
Checks whether the map contains the specified key.
containsKey(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
containsKey(Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.containsKey(Object) method.
containsKey(Object) - method in class org.apache.commons.collections.ReferenceMap
Returns true if this map contains the given key.
containsKey(Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.containsKey(Object).
containsKey(Object) - method in class org.apache.commons.collections.map.SingletonMap
Checks whether the map contains the specified key.
containsKey(Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.containsKey(Object).
containsKey(Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Checks if the map contains the specified key.
containsKey(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Checks whether this map contains the a mapping for the specified key.
containsKey(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Checks whether the map contains the specified multi-key.
containsKey(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Checks whether the map contains the specified multi-key.
containsKey(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Checks whether the map contains the specified multi-key.
containsKey(Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Checks whether the map contains the specified multi-key.
containsValue(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
containsValue(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Checks whether the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.map.AbstractLinkedMap
Checks whether the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
containsValue(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Checks whether the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.BeanMap
Returns true if the bean defines a property whose current value is the given object.
containsValue(Object) - method in class org.apache.commons.collections.map.CompositeMap
Returns true if this map maps one or more keys to the specified value.
containsValue(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Returns true if this map maps one or more keys to the specified value.
containsValue(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
containsValue(Object) - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains one or more keys mapping to the specified value.
containsValue(Object) - method in class org.apache.commons.collections.FastTreeMap
Return true if this map contains one or more keys mapping to the specified value.
containsValue(Object) - method in class org.apache.commons.collections.map.Flat3Map
Checks whether the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.MultiHashMap
Checks whether the map contains the value specified.
containsValue(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
containsValue(Object) - method in class org.apache.commons.collections.MultiMap
Checks whether the map contains the value specified.
containsValue(Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.containsValue(Object) method.
containsValue(Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.containsValue(Object).
containsValue(Object) - method in class org.apache.commons.collections.map.SingletonMap
Checks whether the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.containsValue(Object).
containsValue(Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Checks if the map contains the specified value.
containsValue(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Checks whether this map contains the a mapping for the specified value.
containsValue(Object,Object) - method in class org.apache.commons.collections.MultiHashMap
Checks whether the collection at the specified key contains the value.
convertKey(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Converts input keys to another object for storage in the map.
convertKey(Object) - method in class org.apache.commons.collections.map.CaseInsensitiveMap
Overrides convertKey() from AbstractHashedMap to convert keys to lower case.
convertProperties(Properties) - static method in class org.apache.commons.collections.ExtendedProperties
Convert a standard properties class into a configuration class.
convertType(Class,Object) - method in class org.apache.commons.collections.BeanMap
Converts the given value to the given type.
countMatches(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Counts the number of elements in the input collection that match the predicate.
create() - method in class org.apache.commons.collections.functors.ConstantFactory
Always return constant.
create() - method in class org.apache.commons.collections.functors.ExceptionFactory
Always throws an exception.
create() - method in class org.apache.commons.collections.Factory
Create a new object.
create() - method in class org.apache.commons.collections.functors.InstantiateFactory
Creates an object using the stored constructor.
createBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates a new instance of the subclass.
createBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - method in class org.apache.commons.collections.bidimap.DualHashBidiMap
Creates a new instance of this object.
createBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
Creates a new instance of this object.
createCollection(Collection) - method in class org.apache.commons.collections.MultiHashMap
Creates a new instance of the map value Collection container.
createDelegateMap() - method in class org.apache.commons.collections.map.Flat3Map
Create an instance of the map used for storage when in delegation mode.
Creates an entry to store the key-value data.
Creates an entry to store the data.
Creates a ReferenceEntry instead of a HashEntry.
Creates an entry to store the data.
createEntrySetIterator() - method in class org.apache.commons.collections.map.AbstractHashedMap
Creates an entry set iterator.
createEntrySetIterator() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Creates an entry set iterator.
createEntrySetIterator() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Creates an entry set iterator.
createEntrySetIterator(Iterator) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates an entry set iterator.
createHeaderNode() - method in class org.apache.commons.collections.list.AbstractLinkedList
Creates a new node with previous, next and element all set to null.
createKeySetIterator() - method in class org.apache.commons.collections.map.AbstractHashedMap
Creates a key set iterator.
createKeySetIterator() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Creates a key set iterator.
createKeySetIterator() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Creates an key set iterator.
createKeySetIterator(Iterator) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates a key set iterator.
createMap() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates a new instance of the map used by the subclass to store data.
createNode(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
Creates a new node with the specified properties.
createNode(Object) - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Creates a new node, either by reusing one from the cache or creating a new one.
Creates an iterator for the sublist.
Creates a list iterator for the sublist.
createValuesIterator() - method in class org.apache.commons.collections.map.AbstractHashedMap
Creates a values iterator.
createValuesIterator() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Creates a values iterator.
createValuesIterator() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Creates an values iterator.
createValuesIterator(Iterator) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Creates a values iterator.
createWriteMethodArguments(Method,Object) - method in class org.apache.commons.collections.BeanMap
Creates an array of parameters to pass to the given mutator method.
current - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
The last node that was returned by next() or previous().
currentEntry() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
currentEntry() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
currentIterator - field in class org.apache.commons.collections.iterators.IteratorChain
The current iterator
currentIterator - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The current iterator
currentIteratorIndex - field in class org.apache.commons.collections.iterators.IteratorChain
The index of the current iterator
currentValue - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The current value
CursorableLinkedList.Cursor - class org.apache.commons.collections.CursorableLinkedList.Cursor
CursorableLinkedList.Cursor - class org.apache.commons.collections.list.CursorableLinkedList.Cursor
An extended ListIterator that allows concurrent changes to the underlying list.
cursor() - method in class org.apache.commons.collections.CursorableLinkedList
Returns a ListIterator for iterating through the elements of this list.
cursor() - method in class org.apache.commons.collections.list.CursorableLinkedList
Returns a CursorableLinkedList.Cursor for iterating through the elements of this list.
cursor(int) - method in class org.apache.commons.collections.CursorableLinkedList
Returns a ListIterator for iterating through the elements of this list, initialized such that ListIterator.next will return the element at the specified index (if any) and ListIterator.previous will return the element immediately preceding it (if any).
cursor(int) - method in class org.apache.commons.collections.list.CursorableLinkedList
Returns a CursorableLinkedList.Cursor for iterating through the elements of this list starting from a specified index.
Constructs a new cursor.
CursorableLinkedList - class org.apache.commons.collections.CursorableLinkedList
A doubly-linked list implementation of the List interface, supporting a ListIterator that allows concurrent modifications to the underlying list.
CursorableLinkedList - class org.apache.commons.collections.list.CursorableLinkedList
A List implementation with a ListIterator that allows concurrent modifications to the underlying list.
CursorableLinkedList() - constructor for class org.apache.commons.collections.list.CursorableLinkedList
Constructor that creates.
CursorableLinkedList(Collection) - constructor for class org.apache.commons.collections.list.CursorableLinkedList
Constructor that copies the specified collection
cursors - field in class org.apache.commons.collections.list.CursorableLinkedList
A list of the cursor currently open on this list

D

data - field in class org.apache.commons.collections.map.AbstractHashedMap
Map entries
debugPrint(PrintStream,Object,Map) - static method in class org.apache.commons.collections.MapUtils
Prints the given map with nice line breaks.
decorate(Collection) - static method in class org.apache.commons.collections.collection.SynchronizedCollection
Factory method to create a synchronized collection.
decorate(Collection) - static method in class org.apache.commons.collections.collection.UnmodifiableCollection
Factory method to create an unmodifiable collection.
decorate(Collection,Class) - static method in class org.apache.commons.collections.collection.TypedCollection
Factory method to create a typed collection.
decorate(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.collection.PredicatedCollection
Factory method to create a predicated (validating) collection.
decorate(Collection,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.collection.TransformedCollection
Factory method to create a transforming collection.
decorate(Iterator) - static method in class org.apache.commons.collections.iterators.UnmodifiableIterator
Decorates the specified iterator such that it cannot be modified.
decorate(List) - static method in class org.apache.commons.collections.list.FixedSizeList
Factory method to create a fixed size list.
decorate(List) - static method in class org.apache.commons.collections.set.ListOrderedSet
Factory method to create an ordered set using the supplied list to retain order.
decorate(List) - static method in class org.apache.commons.collections.list.SetUniqueList
Factory method to create a SetList using the supplied list to retain order.
decorate(List) - static method in class org.apache.commons.collections.list.SynchronizedList
Factory method to create a synchronized list.
decorate(List) - static method in class org.apache.commons.collections.list.UnmodifiableList
Factory method to create an unmodifiable list.
decorate(List,Class) - static method in class org.apache.commons.collections.list.TypedList
Factory method to create a typed list.
decorate(List,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.list.LazyList
Factory method to create a lazily instantiating list.
decorate(List,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.list.PredicatedList
Factory method to create a predicated (validating) list.
decorate(List,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.list.TransformedList
Factory method to create a transforming list.
decorate(ListIterator) - static method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
Decorates the specified iterator such that it cannot be modified.
decorate(Map) - static method in class org.apache.commons.collections.map.FixedSizeMap
Factory method to create a fixed size map.
decorate(Map) - static method in class org.apache.commons.collections.map.ListOrderedMap
Factory method to create an ordered map.
decorate(Map) - static method in class org.apache.commons.collections.set.MapBackedSet
Factory method to create a set from a map.
decorate(Map) - static method in class org.apache.commons.collections.map.UnmodifiableMap
Factory method to create an unmodifiable map.
decorate(Map,Class,Class) - static method in class org.apache.commons.collections.map.TypedMap
Factory method to create a typed map.
decorate(Map,Object) - static method in class org.apache.commons.collections.set.MapBackedSet
Factory method to create a set from a map.
decorate(Map,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.map.LazyMap
Factory method to create a lazily instantiated map.
Factory method to create a predicated (validating) map.
decorate(Map,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.map.LazyMap
Factory method to create a lazily instantiated map.
Factory method to create a transforming map.
decorate(org.apache.commons.collections.Bag) - static method in class org.apache.commons.collections.bag.SynchronizedBag
Factory method to create a synchronized bag.
decorate(org.apache.commons.collections.Bag) - static method in class org.apache.commons.collections.bag.UnmodifiableBag
Factory method to create an unmodifiable bag.
decorate(org.apache.commons.collections.Bag,Class) - static method in class org.apache.commons.collections.bag.TypedBag
Factory method to create a typed bag.
Factory method to create a predicated (validating) bag.
Factory method to create a transforming bag.
decorate(org.apache.commons.collections.BidiMap) - static method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
Factory method to create an unmodifiable map.
decorate(org.apache.commons.collections.BoundedCollection) - static method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
Factory method to create an unmodifiable bounded collection.
decorate(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.buffer.BlockingBuffer
Factory method to create a blocking buffer.
decorate(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.buffer.SynchronizedBuffer
Factory method to create a synchronized buffer.
decorate(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
Factory method to create an unmodifiable buffer.
decorate(org.apache.commons.collections.Buffer,Class) - static method in class org.apache.commons.collections.buffer.TypedBuffer
Factory method to create a typed list.
Factory method to create a predicated (validating) buffer.
Factory method to create a transforming buffer.
decorate(org.apache.commons.collections.map.AbstractHashedMap) - static method in class org.apache.commons.collections.map.MultiKeyMap
Decorates the specified map to add the MultiKeyMap API and fast query.
decorate(org.apache.commons.collections.MapIterator) - static method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Decorates the specified iterator such that it cannot be modified.
decorate(org.apache.commons.collections.OrderedBidiMap) - static method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Factory method to create an unmodifiable map.
decorate(org.apache.commons.collections.OrderedMap) - static method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
Factory method to create an unmodifiable sorted map.
decorate(org.apache.commons.collections.OrderedMapIterator) - static method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
Decorates the specified iterator such that it cannot be modified.
decorate(org.apache.commons.collections.SortedBag) - static method in class org.apache.commons.collections.bag.SynchronizedSortedBag
Factory method to create a synchronized sorted bag.
decorate(org.apache.commons.collections.SortedBag) - static method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
Factory method to create an unmodifiable bag.
decorate(org.apache.commons.collections.SortedBag,Class) - static method in class org.apache.commons.collections.bag.TypedSortedBag
Factory method to create a typed sorted bag.
Factory method to create a predicated (validating) bag.
Factory method to create a transforming sorted bag.
decorate(org.apache.commons.collections.SortedBidiMap) - static method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
Factory method to create an unmodifiable map.
decorate(Set) - static method in class org.apache.commons.collections.set.ListOrderedSet
Factory method to create an ordered set.
decorate(Set) - static method in class org.apache.commons.collections.set.SynchronizedSet
Factory method to create a synchronized set.
decorate(Set) - static method in class org.apache.commons.collections.map.UnmodifiableEntrySet
Factory method to create an unmodifiable set of Map Entry objects.
decorate(Set) - static method in class org.apache.commons.collections.set.UnmodifiableSet
Factory method to create an unmodifiable set.
decorate(Set,Class) - static method in class org.apache.commons.collections.set.TypedSet
Factory method to create a typed set.
decorate(Set,List) - static method in class org.apache.commons.collections.set.ListOrderedSet
Factory method to create an ordered set specifying the list and set to use.
decorate(Set,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.set.PredicatedSet
Factory method to create a predicated (validating) set.
decorate(Set,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.set.TransformedSet
Factory method to create a transforming set.
decorate(SortedMap) - static method in class org.apache.commons.collections.map.FixedSizeSortedMap
Factory method to create a fixed size sorted map.
decorate(SortedMap) - static method in class org.apache.commons.collections.map.UnmodifiableSortedMap
Factory method to create an unmodifiable sorted map.
decorate(SortedMap,Class,Class) - static method in class org.apache.commons.collections.map.TypedSortedMap
Factory method to create a typed sorted map.
decorate(SortedMap,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.map.LazySortedMap
Factory method to create a lazily instantiated sorted map.
Factory method to create a predicated (validating) sorted map.
decorate(SortedMap,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.map.LazySortedMap
Factory method to create a lazily instantiated sorted map.
Factory method to create a transforming sorted map.
decorate(SortedSet) - static method in class org.apache.commons.collections.set.SynchronizedSortedSet
Factory method to create a synchronized set.
decorate(SortedSet) - static method in class org.apache.commons.collections.set.UnmodifiableSortedSet
Factory method to create an unmodifiable set.
decorate(SortedSet,Class) - static method in class org.apache.commons.collections.set.TypedSortedSet
Factory method to create a typed sorted set.
decorate(SortedSet,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.set.PredicatedSortedSet
Factory method to create a predicated (validating) sorted set.
decorate(SortedSet,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.set.TransformedSortedSet
Factory method to create a transforming sorted set.
decorated - field in class org.apache.commons.collections.comparators.TransformingComparator
The decorated comparator.
decorateUsing(Collection) - static method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
Factory method to create an unmodifiable bounded collection.
DEFAULT_CAPACITY - static field in class org.apache.commons.collections.map.AbstractHashedMap
The default capacity to use
DEFAULT_LOAD_FACTOR - static field in class org.apache.commons.collections.map.AbstractHashedMap
The default load factor to use
DEFAULT_MAX_SIZE - static field in class org.apache.commons.collections.map.LRUMap
Default maximum size
DEFAULT_MAXIMUM_CACHE_SIZE - static field in class org.apache.commons.collections.list.NodeCachingLinkedList
The default value for maximumCacheSize.
DEFAULT_THRESHOLD - static field in class org.apache.commons.collections.map.AbstractHashedMap
The default threshold to use
DefaultKeyValue - class org.apache.commons.collections.keyvalue.DefaultKeyValue
A mutable KeyValue pair that does not implement MapEntry.
DefaultKeyValue() - constructor for class org.apache.commons.collections.keyvalue.DefaultKeyValue
Constructs a new pair with a null key and null value.
DefaultKeyValue(Map.Entry) - constructor for class org.apache.commons.collections.keyvalue.DefaultKeyValue
Constructs a new pair from the specified MapEntry.
DefaultKeyValue(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.DefaultKeyValue
Constructs a new pair with the specified key and given value.
DefaultKeyValue(org.apache.commons.collections.KeyValue) - constructor for class org.apache.commons.collections.keyvalue.DefaultKeyValue
Constructs a new pair from the specified KeyValue.
DefaultMapBag - class org.apache.commons.collections.DefaultMapBag
A skeletal implementation of the Bag interface to minimize the effort required for target implementations.
DefaultMapBag() - constructor for class org.apache.commons.collections.DefaultMapBag
No-argument constructor.
DefaultMapBag(Map) - constructor for class org.apache.commons.collections.DefaultMapBag
Constructor that assigns the specified Map as the backing store.
DefaultMapEntry - class org.apache.commons.collections.DefaultMapEntry
A default implementation of java.util.Map.Entry
DefaultMapEntry - class org.apache.commons.collections.keyvalue.DefaultMapEntry
A restricted implementation of java.util.Map.Entry that prevents the MapEntry contract from being broken.
DefaultMapEntry() - constructor for class org.apache.commons.collections.DefaultMapEntry
Constructs a new DefaultMapEntry with a null key and null value.
DefaultMapEntry(Map.Entry) - constructor for class org.apache.commons.collections.DefaultMapEntry
Constructs a new DefaultMapEntry with the given key and given value.
DefaultMapEntry(Map.Entry) - constructor for class org.apache.commons.collections.keyvalue.DefaultMapEntry
Constructs a new entry from the specified MapEntry.
DefaultMapEntry(Object,Object) - constructor for class org.apache.commons.collections.DefaultMapEntry
Constructs a new DefaultMapEntry with the given key and given value.
DefaultMapEntry(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.DefaultMapEntry
Constructs a new entry with the specified key and given value.
DefaultMapEntry(org.apache.commons.collections.KeyValue) - constructor for class org.apache.commons.collections.keyvalue.DefaultMapEntry
Constructs a new entry from the specified KeyValue.
defaultTransformers - static field in class org.apache.commons.collections.BeanMap
Maps primitive Class types to transformers.
Kills an entry ready for the garbage collector.
disjunction(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a Collection containing the exclusive disjunction (symmetric difference) of the given Collections.
display() - method in class org.apache.commons.collections.ExtendedProperties
Display the configuration for debugging purposes to System.out.
doReadObject(Map,ObjectInputStream) - method in class org.apache.commons.collections.bag.AbstractMapBag
Read the map in using a custom routine.
doReadObject(ObjectInputStream) - method in class org.apache.commons.collections.map.AbstractHashedMap
Reads the map data from the stream.
doReadObject(ObjectInputStream) - method in class org.apache.commons.collections.list.AbstractLinkedList
Deserializes the data held in this object to the stream specified.
doReadObject(ObjectInputStream) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Replaces the superclassm method to read the state of this class.
doReadObject(ObjectInputStream) - method in class org.apache.commons.collections.map.LRUMap
Reads the data necessary for put() to work in the superclass.
DoubleOrderedMap - class org.apache.commons.collections.DoubleOrderedMap
Red-Black tree-based implementation of Map.
DoubleOrderedMap() - constructor for class org.apache.commons.collections.DoubleOrderedMap
Construct a new DoubleOrderedMap
DoubleOrderedMap(Map) - constructor for class org.apache.commons.collections.DoubleOrderedMap
Constructs a new DoubleOrderedMap from an existing Map, with keys and values sorted
Creates a Closure that will call the closure once and then repeatedly until the predicate returns false.
doWriteObject(ObjectOutputStream) - method in class org.apache.commons.collections.map.AbstractHashedMap
Writes the map data to the stream.
doWriteObject(ObjectOutputStream) - method in class org.apache.commons.collections.list.AbstractLinkedList
Serializes the data held in this object to the stream specified.
doWriteObject(ObjectOutputStream) - method in class org.apache.commons.collections.bag.AbstractMapBag
Write the map out using a custom routine.
doWriteObject(ObjectOutputStream) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Replaces the superclass method to store the state of this class.
doWriteObject(ObjectOutputStream) - method in class org.apache.commons.collections.map.LRUMap
Writes the data necessary for put() to work in deserialization.
DualHashBidiMap - class org.apache.commons.collections.bidimap.DualHashBidiMap
Implementation of BidiMap that uses two HashMap instances.
DualHashBidiMap() - constructor for class org.apache.commons.collections.bidimap.DualHashBidiMap
Creates an empty HashBidiMap.
DualHashBidiMap(Map) - constructor for class org.apache.commons.collections.bidimap.DualHashBidiMap
Constructs a HashBidiMap and copies the mappings from specified Map.
DualHashBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - constructor for class org.apache.commons.collections.bidimap.DualHashBidiMap
Constructs a HashBidiMap that decorates the specified maps.
DualTreeBidiMap - class org.apache.commons.collections.bidimap.DualTreeBidiMap
Implementation of BidiMap that uses two TreeMap instances.
DualTreeBidiMap() - constructor for class org.apache.commons.collections.bidimap.DualTreeBidiMap
Creates an empty DualTreeBidiMap
DualTreeBidiMap(Comparator) - constructor for class org.apache.commons.collections.bidimap.DualTreeBidiMap
Constructs a DualTreeBidiMap using the specified Comparator.
DualTreeBidiMap(Map) - constructor for class org.apache.commons.collections.bidimap.DualTreeBidiMap
Constructs a DualTreeBidiMap and copies the mappings from specified Map.
DualTreeBidiMap(Map,Map,org.apache.commons.collections.BidiMap) - constructor for class org.apache.commons.collections.bidimap.DualTreeBidiMap
Constructs a DualTreeBidiMap that decorates the specified maps.
dummyValue - field in class org.apache.commons.collections.set.MapBackedSet
The dummyValue to use

E

Create a new Predicate that returns true if one, but not both, of the specified predicates are true.
elements - field in class org.apache.commons.collections.buffer.PriorityBuffer
The elements in this buffer.
empty() - method in class org.apache.commons.collections.ArrayStack
Return true if this stack is currently empty.
EMPTY_BAG - static field in class org.apache.commons.collections.BagUtils
An empty unmodifiable bag.
EMPTY_BUFFER - static field in class org.apache.commons.collections.BufferUtils
An empty unmodifiable buffer.
EMPTY_COLLECTION - static field in class org.apache.commons.collections.CollectionUtils
An empty unmodifiable collection.
EMPTY_ITERATOR - static field in class org.apache.commons.collections.IteratorUtils
An iterator over no elements.
EMPTY_LIST - static field in class org.apache.commons.collections.ListUtils
An empty unmodifiable list.
EMPTY_LIST_ITERATOR - static field in class org.apache.commons.collections.IteratorUtils
A list iterator over no elements.
EMPTY_MAP - static field in class org.apache.commons.collections.MapUtils
An empty unmodifiable map.
EMPTY_MAP_ITERATOR - static field in class org.apache.commons.collections.IteratorUtils
A map iterator over no elements.
EMPTY_ORDERED_ITERATOR - static field in class org.apache.commons.collections.IteratorUtils
An ordered iterator over no elements.
EMPTY_ORDERED_MAP_ITERATOR - static field in class org.apache.commons.collections.IteratorUtils
An ordered map iterator over no elements.
EMPTY_SET - static field in class org.apache.commons.collections.SetUtils
An empty unmodifiable set.
EMPTY_SORTED_BAG - static field in class org.apache.commons.collections.BagUtils
An empty unmodifiable sorted bag.
EMPTY_SORTED_MAP - static field in class org.apache.commons.collections.MapUtils
An empty unmodifiable sorted map.
EMPTY_SORTED_SET - static field in class org.apache.commons.collections.SetUtils
An empty unmodifiable sorted set.
EmptyIterator - class org.apache.commons.collections.iterators.EmptyIterator
Provides an implementation of an empty iterator.
EmptyIterator() - constructor for class org.apache.commons.collections.iterators.EmptyIterator
Constructor.
emptyIterator() - static method in class org.apache.commons.collections.IteratorUtils
Gets an empty iterator.
EmptyListIterator - class org.apache.commons.collections.iterators.EmptyListIterator
Provides an implementation of an empty list iterator.
EmptyListIterator() - constructor for class org.apache.commons.collections.iterators.EmptyListIterator
Constructor.
emptyListIterator() - static method in class org.apache.commons.collections.IteratorUtils
Gets an empty list iterator.
EmptyMapIterator - class org.apache.commons.collections.iterators.EmptyMapIterator
Provides an implementation of an empty map iterator.
EmptyMapIterator() - constructor for class org.apache.commons.collections.iterators.EmptyMapIterator
Constructor.
emptyMapIterator() - static method in class org.apache.commons.collections.IteratorUtils
Gets an empty map iterator.
EmptyOrderedIterator - class org.apache.commons.collections.iterators.EmptyOrderedIterator
Provides an implementation of an empty ordered iterator.
EmptyOrderedIterator() - constructor for class org.apache.commons.collections.iterators.EmptyOrderedIterator
Constructor.
emptyOrderedIterator() - static method in class org.apache.commons.collections.IteratorUtils
Gets an empty ordered iterator.
EmptyOrderedMapIterator - class org.apache.commons.collections.iterators.EmptyOrderedMapIterator
Provides an implementation of an empty ordered map iterator.
EmptyOrderedMapIterator() - constructor for class org.apache.commons.collections.iterators.EmptyOrderedMapIterator
Constructor.
emptyOrderedMapIterator() - static method in class org.apache.commons.collections.IteratorUtils
Gets an empty ordered map iterator.
END_TOKEN - static field in class org.apache.commons.collections.ExtendedProperties
endIndex - field in class org.apache.commons.collections.iterators.ArrayIterator
The end index to loop to
endIndex - field in class org.apache.commons.collections.iterators.ObjectArrayIterator
The end index to loop to
ensureCapacity(int) - method in class org.apache.commons.collections.map.AbstractHashedMap
Changes the size of the data structure to the capacity proposed.
ensureCapacity(int) - method in class org.apache.commons.collections.FastArrayList
Increase the capacity of this ArrayList instance, if necessary, to ensure that it can hold at least the number of elements specified by the minimum capacity argument.
entry - field in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
The Map.Entry to decorate
Gets the after field from a LinkEntry.
Gets the before field from a LinkEntry.
Gets the hashCode field from a HashEntry.
entryIterator() - method in class org.apache.commons.collections.BeanMap
Convenience method for getting an iterator over the entries.
Gets the key field from a HashEntry.
Gets the next field from a HashEntry.
AbstractDualBidiMap.EntrySet - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySet
Inner class EntrySet.
AbstractHashedMap.EntrySet - class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
EntrySet implementation.
entrySet() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Gets an entrySet view of the map.
entrySet() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the entrySet view of the map.
entrySet() - method in class org.apache.commons.collections.map.AbstractMapDecorator
entrySet() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Returns a set view of this map's entries.
entrySet() - method in class org.apache.commons.collections.BeanMap
Gets a Set of MapEntry objects that are the mappings for this BeanMap.
entrySet() - method in class org.apache.commons.collections.map.CompositeMap
Returns a set view of the mappings contained in this map.
entrySet() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a set view of the mappings contained in this map.
entrySet() - method in class org.apache.commons.collections.FastHashMap
Return a collection view of the mappings contained in this map.
entrySet() - method in class org.apache.commons.collections.FastTreeMap
Return a collection view of the mappings contained in this map.
entrySet() - method in class org.apache.commons.collections.map.FixedSizeMap
entrySet() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
entrySet() - method in class org.apache.commons.collections.map.Flat3Map
Gets the entrySet view of the map.
entrySet() - method in class org.apache.commons.collections.map.ListOrderedMap
entrySet() - method in class org.apache.commons.collections.map.MultiKeyMap
entrySet() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.entrySet() method.
entrySet() - method in class org.apache.commons.collections.ReferenceMap
Returns a set view of this map's entries.
entrySet() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.entrySet().
entrySet() - method in class org.apache.commons.collections.map.SingletonMap
Gets the entrySet view of the map.
entrySet() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.entrySet().
entrySet() - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the entry set.
entrySet() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns a set view of the entries contained in this map in key order.
entrySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
entrySet() - method in class org.apache.commons.collections.map.UnmodifiableMap
entrySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
entrySet() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
entrySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
entrySet() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
EntrySet(org.apache.commons.collections.bidimap.AbstractDualBidiMap) - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySet
Constructs a new view of the BidiMap.
EntrySet(org.apache.commons.collections.map.AbstractHashedMap) - constructor for class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
entrySetByValue() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a set view of the mappings contained in this map.
AbstractDualBidiMap.EntrySetIterator - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
Inner class EntrySetIterator.
EntrySet iterator.
EntrySet iterator.
Constructor.
EntrySetMapIterator - class org.apache.commons.collections.iterators.EntrySetMapIterator
Implements a MapIterator using a Map entrySet.
EntrySetMapIterator(Map) - constructor for class org.apache.commons.collections.iterators.EntrySetMapIterator
Constructor.
Gets the value field from a HashEntry.
EnumerationIterator - class org.apache.commons.collections.iterators.EnumerationIterator
Adapter to make Enumeration instances appear to be Iterator instances.
EnumerationIterator() - constructor for class org.apache.commons.collections.iterators.EnumerationIterator
Constructs a new EnumerationIterator that will not function until setEnumeration(Enumeration) is called.
EnumerationIterator(Enumeration) - constructor for class org.apache.commons.collections.iterators.EnumerationIterator
Constructs a new EnumerationIterator that provides an iterator view of the given enumeration.
EnumerationIterator(Enumeration,Collection) - constructor for class org.apache.commons.collections.iterators.EnumerationIterator
Constructs a new EnumerationIterator that will remove elements from the specified collection.
EnumerationUtils - class org.apache.commons.collections.EnumerationUtils
Provides utility methods for Enumeration instances.
EnumerationUtils() - constructor for class org.apache.commons.collections.EnumerationUtils
EnumerationUtils is not normally instantiated.
EqualPredicate - class org.apache.commons.collections.functors.EqualPredicate
Predicate implementation that returns true if the input is the same object as the one stored in this predicate by equals.
EqualPredicate(Object) - constructor for class org.apache.commons.collections.functors.EqualPredicate
Constructor that performs no validation.
equalPredicate(Object) - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that checks if the input object is equal to the specified object using equals().
equals(Object) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
equals(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
equals(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Compares this map with another.
equals(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
equals(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
equals(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag
Compares this Bag to another.
equals(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag.MutableInteger
equals(Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
equals(Object) - method in class org.apache.commons.collections.keyvalue.AbstractMapEntry
Compares this Map Entry with another Map Entry.
equals(Object) - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
equals(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Compares this map entry to another.
equals(Object) - method in class org.apache.commons.collections.comparators.BooleanComparator
Returns true iff that Object is is a Comparator whose ordering is known to be equivalent to mine.
equals(Object) - method in class org.apache.commons.collections.comparators.ComparableComparator
Returns true iff that Object is is a Comparator whose ordering is known to be equivalent to mine.
equals(Object) - method in class org.apache.commons.collections.comparators.ComparatorChain
Returns true iff that Object is is a Comparator whose ordering is known to be equivalent to mine.
equals(Object) - method in class org.apache.commons.collections.map.CompositeMap
Checks if this Map equals another as per the Map specification.
equals(Object) - method in class org.apache.commons.collections.set.CompositeSet
equals(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Compares the specified object with this list for equality.
equals(Object) - method in class org.apache.commons.collections.keyvalue.DefaultKeyValue
Compares this Map Entry with another Map Entry.
equals(Object) - method in class org.apache.commons.collections.DefaultMapBag
Returns true if the given object is not null, has the precise type of this bag, and contains the same number of occurrences of all the same elements.
equals(Object) - method in class org.apache.commons.collections.DefaultMapEntry
Compares this Map Entry with another Map Entry.
equals(Object) - method in class org.apache.commons.collections.FastArrayList
Compare the specified object with this list for equality.
equals(Object) - method in class org.apache.commons.collections.FastHashMap
Compare the specified object with this list for equality.
equals(Object) - method in class org.apache.commons.collections.FastTreeMap
Compare the specified object with this list for equality.
equals(Object) - method in class org.apache.commons.collections.map.Flat3Map
Compares this map with another.
equals(Object) - method in class org.apache.commons.collections.map.IdentityMap.IdentityEntry
equals(Object) - method in class org.apache.commons.collections.set.MapBackedSet
equals(Object) - method in class org.apache.commons.collections.keyvalue.MultiKey
Compares this object to another.
equals(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
equals(Object) - method in class org.apache.commons.collections.comparators.NullComparator
Determines whether the specified object represents a comparator that is equal to this comparator.
equals(Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.equals(Object) method.
equals(Object) - method in class org.apache.commons.collections.comparators.ReverseComparator
Returns true iff that Object is is a Comparator whose ordering is known to be equivalent to mine.
equals(Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.equals(Object).
equals(Object) - method in class org.apache.commons.collections.map.SingletonMap
Compares this map with another.
equals(Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.equals(Object).
equals(Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Compares this map to another, as per the Map specification.
equals(Object) - method in class org.apache.commons.collections.collection.SynchronizedCollection
equals(Object) - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Compares this Map Entry with another Map Entry.
equals(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Compares for equals as per the API.
evaluate(Object) - method in class org.apache.commons.collections.functors.AllPredicate
Evaluates the predicate returning true if all predicates return true.
evaluate(Object) - method in class org.apache.commons.collections.functors.AndPredicate
Evaluates the predicate returning true if both predicates return true.
evaluate(Object) - method in class org.apache.commons.collections.functors.AnyPredicate
Evaluates the predicate returning true if any predicate returns true.
evaluate(Object) - method in class org.apache.commons.collections.functors.EqualPredicate
Evaluates the predicate returning true if the input equals the stored value.
evaluate(Object) - method in class org.apache.commons.collections.functors.ExceptionPredicate
Evaluates the predicate always throwing an exception.
evaluate(Object) - method in class org.apache.commons.collections.functors.FalsePredicate
Evaluates the predicate returning false always.
evaluate(Object) - method in class org.apache.commons.collections.functors.IdentityPredicate
Evaluates the predicate returning true if the input object is identical to the stored object.
evaluate(Object) - method in class org.apache.commons.collections.functors.InstanceofPredicate
Evaluates the predicate returning true if the input object is of the correct type.
evaluate(Object) - method in class org.apache.commons.collections.functors.NonePredicate
Evaluates the predicate returning false if any stored predicate returns false.
evaluate(Object) - method in class org.apache.commons.collections.functors.NotNullPredicate
Evaluates the predicate returning true if the object does not equal null.
evaluate(Object) - method in class org.apache.commons.collections.functors.NotPredicate
Evaluates the predicate returning the opposite to the stored predicate.
evaluate(Object) - method in class org.apache.commons.collections.functors.NullIsExceptionPredicate
Evaluates the predicate returning the result of the decorated predicate once a null check is performed.
evaluate(Object) - method in class org.apache.commons.collections.functors.NullIsFalsePredicate
Evaluates the predicate returning the result of the decorated predicate once a null check is performed.
evaluate(Object) - method in class org.apache.commons.collections.functors.NullIsTruePredicate
Evaluates the predicate returning the result of the decorated predicate once a null check is performed.
evaluate(Object) - method in class org.apache.commons.collections.functors.NullPredicate
Evaluates the predicate returning true if the input is null.
evaluate(Object) - method in class org.apache.commons.collections.functors.OnePredicate
Evaluates the predicate returning true if only one decorated predicate returns true.
evaluate(Object) - method in class org.apache.commons.collections.functors.OrPredicate
Evaluates the predicate returning true if either predicate returns true.
evaluate(Object) - method in class org.apache.commons.collections.Predicate
Use the specified parameter to perform a test that returns true or false.
evaluate(Object) - method in class org.apache.commons.collections.functors.TransformedPredicate
Evaluates the predicate returning the result of the decorated predicate once the input has been transformed
evaluate(Object) - method in class org.apache.commons.collections.functors.TransformerPredicate
Evaluates the predicate returning the result of the decorated transformer.
evaluate(Object) - method in class org.apache.commons.collections.functors.TruePredicate
Evaluates the predicate returning true always.
evaluate(Object) - method in class org.apache.commons.collections.functors.UniquePredicate
Evaluates the predicate returning true if the input object hasn't been received yet.
ExceptionClosure - class org.apache.commons.collections.functors.ExceptionClosure
Closure implementation that always throws an exception.
exceptionClosure() - static method in class org.apache.commons.collections.ClosureUtils
Gets a Closure that always throws an exception.
ExceptionFactory - class org.apache.commons.collections.functors.ExceptionFactory
Factory implementation that always throws an exception.
exceptionFactory() - static method in class org.apache.commons.collections.FactoryUtils
Gets a Factory that always throws an exception.
ExceptionPredicate - class org.apache.commons.collections.functors.ExceptionPredicate
Predicate implementation that always throws an exception.
exceptionPredicate() - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that always throws an exception.
ExceptionTransformer - class org.apache.commons.collections.functors.ExceptionTransformer
Transformer implementation that always throws an exception.
exceptionTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a transformer that always throws an exception.
execute(Object) - method in class org.apache.commons.collections.functors.ChainedClosure
Execute a list of closures.
execute(Object) - method in class org.apache.commons.collections.Closure
Performs an action on the specified input object.
execute(Object) - method in class org.apache.commons.collections.functors.ExceptionClosure
Always throw an exception.
execute(Object) - method in class org.apache.commons.collections.functors.ForClosure
Executes the closure count times.
execute(Object) - method in class org.apache.commons.collections.functors.IfClosure
Executes the true or false closure accoring to the result of the predicate.
execute(Object) - method in class org.apache.commons.collections.functors.NOPClosure
Do nothing.
execute(Object) - method in class org.apache.commons.collections.functors.SwitchClosure
Executes the closure whose matching predicate returns true
execute(Object) - method in class org.apache.commons.collections.functors.TransformerClosure
Executes the closure by calling the decorated transformer.
execute(Object) - method in class org.apache.commons.collections.functors.WhileClosure
Executes the closure until the predicate is false.
exists(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Answers true if a predicate is true for at least one element of a collection.
expectedModCount - field in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
The modification count expected
expectedModCount - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
The modification count that the list is expected to have.
expectedModCount - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
The modification count expected
ExtendedProperties - class org.apache.commons.collections.ExtendedProperties
This class extends normal Java properties by adding the possibility to use the same key many times concatenating the value strings instead of overwriting them.
ExtendedProperties() - constructor for class org.apache.commons.collections.ExtendedProperties
Creates an empty extended properties object.
ExtendedProperties(String) - constructor for class org.apache.commons.collections.ExtendedProperties
Creates and loads the extended properties from the specified file.
ExtendedProperties(String,String) - constructor for class org.apache.commons.collections.ExtendedProperties
Creates and loads the extended properties from the specified file.

F

factory - field in class org.apache.commons.collections.list.LazyList
The factory to use to lazily instantiate the objects
factory - field in class org.apache.commons.collections.map.LazyMap
The factory to use to construct elements
Factory - interface org.apache.commons.collections.Factory
Defines a functor interface implemented by classes that create objects.
FactoryTransformer - class org.apache.commons.collections.functors.FactoryTransformer
Transformer implementation that calls a Factory and returns the result.
FactoryTransformer(org.apache.commons.collections.Factory) - constructor for class org.apache.commons.collections.functors.FactoryTransformer
Constructor that performs no validation.
FactoryUtils - class org.apache.commons.collections.FactoryUtils
FactoryUtils provides reference implementations and utilities for the Factory functor interface.
FactoryUtils() - constructor for class org.apache.commons.collections.FactoryUtils
This class is not normally instantiated.
FalsePredicate - class org.apache.commons.collections.functors.FalsePredicate
Predicate implementation that always returns false.
falsePredicate() - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that always returns false.
fast - field in class org.apache.commons.collections.FastArrayList
Are we operating in "fast" mode?
fast - field in class org.apache.commons.collections.FastHashMap
Are we currently operating in "fast" mode?
fast - field in class org.apache.commons.collections.FastTreeMap
Are we operating in "fast" mode?
FastArrayList - class org.apache.commons.collections.FastArrayList
A customized implementation of java.util.ArrayList designed to operate in a multithreaded environment where the large majority of method calls are read-only, instead of structural changes.
FastArrayList() - constructor for class org.apache.commons.collections.FastArrayList
Construct a an empty list.
FastArrayList(Collection) - constructor for class org.apache.commons.collections.FastArrayList
Construct a list containing the elements of the specified collection, in the order they are returned by the collection's iterator.
FastArrayList(int) - constructor for class org.apache.commons.collections.FastArrayList
Construct an empty list with the specified capacity.
FastHashMap - class org.apache.commons.collections.FastHashMap
A customized implementation of java.util.HashMap designed to operate in a multithreaded environment where the large majority of method calls are read-only, instead of structural changes.
FastHashMap() - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map.
FastHashMap(int) - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map with the specified capacity.
FastHashMap(int,float) - constructor for class org.apache.commons.collections.FastHashMap
Construct an empty map with the specified capacity and load factor.
FastHashMap(Map) - constructor for class org.apache.commons.collections.FastHashMap
Construct a new map with the same mappings as the specified map.
FastTreeMap - class org.apache.commons.collections.FastTreeMap
A customized implementation of java.util.TreeMap designed to operate in a multithreaded environment where the large majority of method calls are read-only, instead of structural changes.
FastTreeMap() - constructor for class org.apache.commons.collections.FastTreeMap
Construct a an empty map.
FastTreeMap(Comparator) - constructor for class org.apache.commons.collections.FastTreeMap
Construct an empty map with the specified comparator.
FastTreeMap(Map) - constructor for class org.apache.commons.collections.FastTreeMap
Construct a new map with the same mappings as the specified map, sorted according to the keys's natural order
FastTreeMap(SortedMap) - constructor for class org.apache.commons.collections.FastTreeMap
Construct a new map with the same mappings as the specified map, sorted according to the same ordering
file - field in class org.apache.commons.collections.ExtendedProperties
The file connected to this repository (holding comments and such).
fileSeparator - field in class org.apache.commons.collections.ExtendedProperties
File separator.
filter(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Filter the collection by applying a Predicate to each element.
filteredIterator(Iterator,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that filters another iterator.
Gets a list iterator that filters another list iterator.
FilterIterator - class org.apache.commons.collections.iterators.FilterIterator
Decorates an iterator such that only elements matching a predicate filter are returned.
FilterIterator() - constructor for class org.apache.commons.collections.iterators.FilterIterator
Constructs a new FilterIterator that will not function until setIterator is invoked.
FilterIterator(Iterator) - constructor for class org.apache.commons.collections.iterators.FilterIterator
Constructs a new FilterIterator that will not function until setPredicate is invoked.
FilterIterator(Iterator,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.iterators.FilterIterator
Constructs a new FilterIterator that will use the given iterator and predicate.
FilterListIterator - class org.apache.commons.collections.iterators.FilterListIterator
A proxy ListIterator which takes a Predicate instance to filter out objects from an underlying ListIterator instance.
FilterListIterator() - constructor for class org.apache.commons.collections.iterators.FilterListIterator
Constructs a new FilterListIterator that will not function until setListIterator and setPredicate are invoked.
FilterListIterator(ListIterator) - constructor for class org.apache.commons.collections.iterators.FilterListIterator
Constructs a new FilterListIterator that will not function until setPredicate is invoked.
FilterListIterator(ListIterator,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.iterators.FilterListIterator
Constructs a new FilterListIterator.
FilterListIterator(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.iterators.FilterListIterator
Constructs a new FilterListIterator that will not function until setListIterator is invoked.
find(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Finds the first element in the given collection which matches the given predicate.
findNext(Object) - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Finds the next object in the iteration given any start object.
findNextByIterator(Iterator) - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Finds the next object in the iteration given an iterator.
firePropertyChange(Object,Object,Object) - method in class org.apache.commons.collections.BeanMap
Called during a successful put(Object,Object) operation.
first() - method in class org.apache.commons.collections.bag.AbstractSortedBagDecorator
first() - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
first() - method in class org.apache.commons.collections.bag.PredicatedSortedBag
first() - method in class org.apache.commons.collections.set.PredicatedSortedSet
first() - method in class org.apache.commons.collections.SortedBag
Returns the first (lowest) member.
first() - method in class org.apache.commons.collections.bag.SynchronizedSortedBag
first() - method in class org.apache.commons.collections.set.SynchronizedSortedSet
first() - method in class org.apache.commons.collections.bag.TransformedSortedBag
first() - method in class org.apache.commons.collections.set.TransformedSortedSet
first() - method in class org.apache.commons.collections.TreeBag
Returns the first (lowest) member.
first() - method in class org.apache.commons.collections.bag.TreeBag
firstCachedNode - field in class org.apache.commons.collections.list.NodeCachingLinkedList
The first cached node, or null if no nodes are cached.
firstKey() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets the first key in the map, which is the most recently inserted.
firstKey() - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
firstKey() - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
firstKey() - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
firstKey() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
firstKey() - method in class org.apache.commons.collections.FastTreeMap
Return the first (lowest) key currently in this sorted map.
firstKey() - method in class org.apache.commons.collections.map.LazySortedMap
firstKey() - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the first key in this map by insert order.
firstKey() - method in class org.apache.commons.collections.OrderedMap
Gets the first key currently in this map.
firstKey() - method in class org.apache.commons.collections.map.PredicatedSortedMap
firstKey() - method in class org.apache.commons.collections.map.SingletonMap
Gets the first (and only) key in the map.
firstKey() - method in class org.apache.commons.collections.map.TransformedSortedMap
firstKey() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the first (lowest) key currently in this map.
firstKey() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
FixedOrderComparator - class org.apache.commons.collections.comparators.FixedOrderComparator
A Comparator which imposes a specific order on a specific set of Objects.
FixedOrderComparator() - constructor for class org.apache.commons.collections.comparators.FixedOrderComparator
Constructs an empty FixedOrderComparator.
FixedOrderComparator(List) - constructor for class org.apache.commons.collections.comparators.FixedOrderComparator
Constructs a FixedOrderComparator which uses the order of the given list to compare the objects.
FixedOrderComparator(Object[]) - constructor for class org.apache.commons.collections.comparators.FixedOrderComparator
Constructs a FixedOrderComparator which uses the order of the given array to compare the objects.
FixedSizeList - class org.apache.commons.collections.list.FixedSizeList
Decorates another List to fix the size preventing add/remove.
FixedSizeList(List) - constructor for class org.apache.commons.collections.list.FixedSizeList
Constructor that wraps (not copies).
fixedSizeList(List) - static method in class org.apache.commons.collections.ListUtils
Returns a fixed-sized list backed by the given list.
FixedSizeMap - class org.apache.commons.collections.map.FixedSizeMap
Decorates another Map to fix the size, preventing add/remove.
FixedSizeMap(Map) - constructor for class org.apache.commons.collections.map.FixedSizeMap
Constructor that wraps (not copies).
fixedSizeMap(Map) - static method in class org.apache.commons.collections.MapUtils
Returns a fixed-sized map backed by the given map.
FixedSizeSortedMap - class org.apache.commons.collections.map.FixedSizeSortedMap
Decorates another SortedMap to fix the size blocking add/remove.
FixedSizeSortedMap(SortedMap) - constructor for class org.apache.commons.collections.map.FixedSizeSortedMap
Constructor that wraps (not copies).
fixedSizeSortedMap(SortedMap) - static method in class org.apache.commons.collections.MapUtils
Returns a fixed-sized sorted map backed by the given sorted map.
Flat3Map - class org.apache.commons.collections.map.Flat3Map
A Map implementation that stores data in simple fields until the size is greater than 3.
Flat3Map() - constructor for class org.apache.commons.collections.map.Flat3Map
Constructor.
Flat3Map(Map) - constructor for class org.apache.commons.collections.map.Flat3Map
Constructor copying elements from another map.
forAllDo(Collection,org.apache.commons.collections.Closure) - static method in class org.apache.commons.collections.CollectionUtils
Executes the given closure on each element in the collection.
ForClosure - class org.apache.commons.collections.functors.ForClosure
Closure implementation that calls another closure n times, like a for loop.
forClosure(int,org.apache.commons.collections.Closure) - static method in class org.apache.commons.collections.ClosureUtils
Creates a Closure that will call the closure count times.
ForClosure(int,org.apache.commons.collections.Closure) - constructor for class org.apache.commons.collections.functors.ForClosure
Constructor that performs no validation.
FunctorException - class org.apache.commons.collections.FunctorException
Runtime exception thrown from functors.
FunctorException() - constructor for class org.apache.commons.collections.FunctorException
Constructs a new FunctorException without specified detail message.
FunctorException(String) - constructor for class org.apache.commons.collections.FunctorException
Constructs a new FunctorException with specified detail message.
FunctorException(String,Throwable) - constructor for class org.apache.commons.collections.FunctorException
Constructs a new FunctorException with specified detail message and nested Throwable root cause.
FunctorException(Throwable) - constructor for class org.apache.commons.collections.FunctorException
Constructs a new FunctorException with specified nested Throwable root cause.

G

get() - method in class org.apache.commons.collections.buffer.AbstractBufferDecorator
get() - method in class org.apache.commons.collections.ArrayStack
Returns the element on the top of the stack.
get() - method in class org.apache.commons.collections.BinaryHeap
Returns the priority element.
get() - method in class org.apache.commons.collections.buffer.BlockingBuffer
get() - method in class org.apache.commons.collections.BoundedFifoBuffer
Returns the least recently inserted element in this buffer.
get() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Returns the least recently inserted element in this buffer.
get() - method in class org.apache.commons.collections.Buffer
Gets the next object from the buffer without removing it.
get() - method in class org.apache.commons.collections.buffer.PredicatedBuffer
Gets the next object from the buffer without removing it.
get() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Gets the next element to be removed without actually removing it (peek).
get() - method in class org.apache.commons.collections.buffer.SynchronizedBuffer
Gets the next object from the buffer without removing it.
get() - method in class org.apache.commons.collections.buffer.TransformedBuffer
get() - method in class org.apache.commons.collections.UnboundedFifoBuffer
Returns the next object in the buffer.
get() - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Returns the next object in the buffer.
get(int) - method in class org.apache.commons.collections.list.AbstractLinkedList
get(int) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
get(int) - method in class org.apache.commons.collections.list.AbstractListDecorator
get(int) - method in class org.apache.commons.collections.CursorableLinkedList
Returns the element at the specified position in this list.
get(int) - method in class org.apache.commons.collections.FastArrayList
Return the element at the specified position in the list.
get(int) - method in class org.apache.commons.collections.list.FixedSizeList
get(int) - method in class org.apache.commons.collections.list.LazyList
Decorate the get method to perform the lazy behaviour.
get(int) - method in class org.apache.commons.collections.map.LinkedMap
Gets the key at the specified index.
get(int) - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the key at the specified index.
get(int) - method in class org.apache.commons.collections.set.ListOrderedSet
get(int) - method in class org.apache.commons.collections.list.PredicatedList
get(int) - method in class org.apache.commons.collections.SequencedHashMap
Gets the key at the specified index.
get(int) - method in class org.apache.commons.collections.list.SynchronizedList
get(int) - method in class org.apache.commons.collections.list.TransformedList
get(int) - method in class org.apache.commons.collections.list.TreeList
Gets the element at the specified index.
get(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
get(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the value mapped to the key specified.
get(Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
get(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Gets the value mapped to the key specified.
get(Object) - method in class org.apache.commons.collections.BeanMap
Returns the value of the bean's property with the given name.
get(Object) - method in class org.apache.commons.collections.map.CompositeMap
Returns the value to which this map maps the specified key.
get(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Returns the value to which this map maps the specified key.
get(Object) - method in class org.apache.commons.collections.FastHashMap
Return the value to which this map maps the specified key.
get(Object) - method in class org.apache.commons.collections.FastTreeMap
Return the value to which this map maps the specified key.
get(Object) - method in class org.apache.commons.collections.map.Flat3Map
Gets the value mapped to the key specified.
get(Object) - method in class org.apache.commons.collections.map.LazyMap
get(Object) - method in class org.apache.commons.collections.LRUMap
Get the value for a key from the Map.
get(Object) - method in class org.apache.commons.collections.map.LRUMap
Gets the value mapped to the key specified.
get(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
get(Object) - method in class org.apache.commons.collections.MultiMap
Gets the collection of values associated with the specified key.
get(Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.get(Object) method.
get(Object) - method in class org.apache.commons.collections.ReferenceMap
Returns the value associated with the given key, if any.
get(Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.get(Object).
get(Object) - method in class org.apache.commons.collections.map.SingletonMap
Gets the value mapped to the key specified.
get(Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.get(Object).
get(Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the value associated with the key.
get(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the value to which this map maps the specified key.
get(Object,int) - static method in class org.apache.commons.collections.CollectionUtils
Returns the index-th value in object, throwing IndexOutOfBoundsException if there is no such element or IllegalArgumentException if object is not an instance of one of the supported types.
get(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the value mapped to the specified multi-key.
get(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the value mapped to the specified multi-key.
get(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the value mapped to the specified multi-key.
get(Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the value mapped to the specified multi-key.
getArray() - method in class org.apache.commons.collections.iterators.ArrayIterator
Gets the array that this iterator is iterating over.
getArray() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Gets the array that this iterator is iterating over.
getBag() - method in class org.apache.commons.collections.bag.AbstractBagDecorator
Gets the bag being decorated.
getBag() - method in class org.apache.commons.collections.bag.PredicatedBag
Gets the decorated bag.
getBag() - method in class org.apache.commons.collections.bag.SynchronizedBag
Gets the bag being decorated.
getBag() - method in class org.apache.commons.collections.bag.TransformedBag
Gets the decorated bag.
getBean() - method in class org.apache.commons.collections.BeanMap
Returns the bean currently being operated on.
getBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
Gets the map being decorated.
getBoolean(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Boolean from a Map in a null-safe manner.
getBoolean(Map,Object,Boolean) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a boolean, using the default value if the the conversion fails.
getBoolean(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a boolean associated with the given configuration key.
getBoolean(String,Boolean) - method in class org.apache.commons.collections.ExtendedProperties
Get a boolean associated with the given configuration key.
getBooleanComparator(boolean) - static method in class org.apache.commons.collections.comparators.BooleanComparator
Returns a BooleanComparator instance that sorts trueFirst values before !trueFirst values.
getBooleanValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a boolean from a Map in a null-safe manner.
getBooleanValue(Map,Object,boolean) - static method in class org.apache.commons.collections.MapUtils
Gets a boolean from a Map in a null-safe manner, using the default value if the the conversion fails.
getBuffer() - method in class org.apache.commons.collections.buffer.AbstractBufferDecorator
Gets the buffer being decorated.
getBuffer() - method in class org.apache.commons.collections.buffer.PredicatedBuffer
Gets the buffer being decorated.
getBuffer() - method in class org.apache.commons.collections.buffer.SynchronizedBuffer
Gets the buffer being decorated.
getBuffer() - method in class org.apache.commons.collections.buffer.TransformedBuffer
Gets the decorated buffer.
getByte(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Byte from a Map in a null-safe manner.
getByte(Map,Object,Byte) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a byte, using the default value if the the conversion fails.
getByte(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a byte associated with the given configuration key.
getByte(String,Byte) - method in class org.apache.commons.collections.ExtendedProperties
Get a byte associated with the given configuration key.
getByteValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a byte from a Map in a null-safe manner.
getByteValue(Map,Object,byte) - static method in class org.apache.commons.collections.MapUtils
Gets a byte from a Map in a null-safe manner, using the default value if the the conversion fails.
getCardinalityMap(Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a Map mapping each unique element in the given Collection to an Integer representing the number of occurrences of that element in the Collection.
getCause() - method in class org.apache.commons.collections.BufferOverflowException
Gets the root cause of the exception.
getCause() - method in class org.apache.commons.collections.BufferUnderflowException
Gets the root cause of the exception.
getCause() - method in class org.apache.commons.collections.FunctorException
Gets the cause of this throwable.
getClosure() - method in class org.apache.commons.collections.functors.ClosureTransformer
Gets the closure.
getClosure() - method in class org.apache.commons.collections.functors.ForClosure
Gets the closure.
getClosure() - method in class org.apache.commons.collections.functors.WhileClosure
Gets the closure.
getClosures() - method in class org.apache.commons.collections.functors.ChainedClosure
Gets the closures, do not modify the array.
getClosures() - method in class org.apache.commons.collections.functors.SwitchClosure
Gets the closures, do not modify the array.
getCollection() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
Gets the collection being decorated.
getCollection(Object) - method in class org.apache.commons.collections.MultiHashMap
Gets the collection mapped to the specified key.
getCollections() - method in class org.apache.commons.collections.collection.CompositeCollection
Gets the collections being decorated.
getComparator() - method in class org.apache.commons.collections.iterators.CollatingIterator
Gets the Comparator by which collatation occurs.
getConstant() - method in class org.apache.commons.collections.functors.ConstantFactory
Gets the constant.
getConstant() - method in class org.apache.commons.collections.functors.ConstantTransformer
Gets the constant.
getCount() - method in class org.apache.commons.collections.functors.ForClosure
Gets the count.
getCount(Object) - method in class org.apache.commons.collections.bag.AbstractBagDecorator
getCount(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns the number of occurrence of the given element in this bag by looking up its count in the underlying map.
getCount(Object) - method in class org.apache.commons.collections.Bag
Returns the number of occurrences (cardinality) of the given object currently in the bag.
getCount(Object) - method in class org.apache.commons.collections.DefaultMapBag
Returns the number of occurrence of the given element in this bag by looking up its count in the underlying map.
getCount(Object) - method in class org.apache.commons.collections.bag.PredicatedBag
Returns the number of occurrences (cardinality) of the given object currently in the bag.
getCount(Object) - method in class org.apache.commons.collections.bag.SynchronizedBag
getCount(Object) - method in class org.apache.commons.collections.bag.TransformedBag
Returns the number of occurrences (cardinality) of the given object currently in the bag.
getDefaultClosure() - method in class org.apache.commons.collections.functors.SwitchClosure
Gets the default closure.
getDefaultTransformer() - method in class org.apache.commons.collections.functors.SwitchTransformer
Gets the default transformer.
getDouble(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Double from a Map in a null-safe manner.
getDouble(Map,Object,Double) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a double, using the default value if the the conversion fails.
getDouble(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a double associated with the given configuration key.
getDouble(String,Double) - method in class org.apache.commons.collections.ExtendedProperties
Get a double associated with the given configuration key.
getDoubleValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a double from a Map in a null-safe manner.
getDoubleValue(Map,Object,double) - static method in class org.apache.commons.collections.MapUtils
Gets a double from a Map in a null-safe manner, using the default value if the the conversion fails.
getEndIndex() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Gets the end index to loop to.
getEntry(int) - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets the key at the specified index.
getEntry(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the entry mapped to the key specified.
getEntry(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Gets the entry mapped to the key specified.
getEnumeration() - method in class org.apache.commons.collections.iterators.EnumerationIterator
Returns the underlying enumeration.
getFactory() - method in class org.apache.commons.collections.functors.FactoryTransformer
Gets the factory.
getFalseClosure() - method in class org.apache.commons.collections.functors.IfClosure
Gets the closure called when false.
getFalseFirstComparator() - static method in class org.apache.commons.collections.comparators.BooleanComparator
Returns a BooleanComparator instance that sorts false values before true values.
getFast() - method in class org.apache.commons.collections.FastArrayList
Returns true if this list is operating in fast mode.
getFast() - method in class org.apache.commons.collections.FastHashMap
Returns true if this map is operating in fast mode.
getFast() - method in class org.apache.commons.collections.FastTreeMap
Returns true if this map is operating in fast mode.
getFirst() - method in class org.apache.commons.collections.list.AbstractLinkedList
getFirst() - method in class org.apache.commons.collections.CursorableLinkedList
Returns the element at the beginning of this list.
getFirst() - method in class org.apache.commons.collections.SequencedHashMap
Return the entry for the "oldest" mapping.
getFirstKey() - method in class org.apache.commons.collections.SequencedHashMap
Return the key for the "oldest" mapping.
getFirstValue() - method in class org.apache.commons.collections.SequencedHashMap
Return the value for the "oldest" mapping.
getFloat(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Float from a Map in a null-safe manner.
getFloat(Map,Object,Float) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a float, using the default value if the the conversion fails.
getFloat(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a float associated with the given configuration key.
getFloat(String,Float) - method in class org.apache.commons.collections.ExtendedProperties
Get a float associated with the given configuration key.
getFloatValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a float from a Map in a null-safe manner.
getFloatValue(Map,Object,float) - static method in class org.apache.commons.collections.MapUtils
Gets a float from a Map in a null-safe manner, using the default value if the the conversion fails.
getInclude() - method in class org.apache.commons.collections.ExtendedProperties
Gets the property value for including other properties files.
getInstance() - static method in class org.apache.commons.collections.functors.CloneTransformer
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.comparators.ComparableComparator
Gets the singleton instance of a ComparableComparator.
getInstance() - static method in class org.apache.commons.collections.functors.ExceptionClosure
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.ExceptionFactory
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.ExceptionPredicate
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.ExceptionTransformer
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.FalsePredicate
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.NOPClosure
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.NOPTransformer
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.NotNullPredicate
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.NullPredicate
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.StringValueTransformer
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.TruePredicate
Factory returning the singleton instance.
getInstance() - static method in class org.apache.commons.collections.functors.UniquePredicate
Factory to create the predicate.
getInstance(Class) - static method in class org.apache.commons.collections.functors.InstanceofPredicate
Factory to create the identity predicate.
getInstance(Class,Class[],Object[]) - static method in class org.apache.commons.collections.functors.InstantiateFactory
Factory method that performs validation.
getInstance(Class[],Object[]) - static method in class org.apache.commons.collections.functors.InstantiateTransformer
Transformer method that performs validation.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.AllPredicate
Factory to create the predicate.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.AnyPredicate
Factory to create the predicate.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.ChainedClosure
Create a new Closure that calls each closure in turn, passing the result into the next closure.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.ChainedTransformer
Create a new Transformer that calls each transformer in turn, passing the result into the next transformer.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.NonePredicate
Factory to create the predicate.
getInstance(Collection) - static method in class org.apache.commons.collections.functors.OnePredicate
Factory to create the predicate.
getInstance(int,org.apache.commons.collections.Closure) - static method in class org.apache.commons.collections.functors.ForClosure
Factory method that performs validation.
getInstance(Map) - static method in class org.apache.commons.collections.functors.MapTransformer
Factory to create the transformer.
getInstance(Map) - static method in class org.apache.commons.collections.functors.SwitchClosure
Create a new Closure that calls one of the closures depending on the predicates.
getInstance(Map) - static method in class org.apache.commons.collections.functors.SwitchTransformer
Create a new Transformer that calls one of the transformers depending on the predicates.
getInstance(Object) - static method in class org.apache.commons.collections.functors.ConstantFactory
Factory method that performs validation.
getInstance(Object) - static method in class org.apache.commons.collections.functors.ConstantTransformer
Transformer method that performs validation.
getInstance(Object) - static method in class org.apache.commons.collections.functors.EqualPredicate
Factory to create the identity predicate.
getInstance(Object) - static method in class org.apache.commons.collections.functors.IdentityPredicate
Factory to create the identity predicate.
getInstance(Object) - static method in class org.apache.commons.collections.functors.PrototypeFactory
Factory method that performs validation.
getInstance(org.apache.commons.collections.Closure) - static method in class org.apache.commons.collections.functors.ClosureTransformer
Factory method that performs validation.
Factory method that performs validation.
getInstance(org.apache.commons.collections.Closure[]) - static method in class org.apache.commons.collections.functors.ChainedClosure
Factory method that performs validation and copies the parameter array.
getInstance(org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.functors.FactoryTransformer
Factory method that performs validation.
getInstance(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.functors.NotPredicate
Factory to create the not predicate.
getInstance(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.functors.NullIsExceptionPredicate
Factory to create the null exception predicate.
getInstance(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.functors.NullIsFalsePredicate
Factory to create the null false predicate.
getInstance(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.functors.NullIsTruePredicate
Factory to create the null true predicate.
getInstance(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.functors.PredicateTransformer
Factory method that performs validation.
Factory method that performs validation.
Factory method that performs validation.
Factory to create the predicate.
Factory to create the predicate.
getInstance(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.functors.AllPredicate
Factory to create the predicate.
getInstance(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.functors.AnyPredicate
Factory to create the predicate.
getInstance(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.functors.NonePredicate
Factory to create the predicate.
getInstance(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.functors.OnePredicate
Factory to create the predicate.
Factory method that performs validation and copies the parameter arrays.
Factory method that performs validation and copies the parameter arrays.
getInstance(org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.functors.TransformerClosure
Factory method that performs validation.
getInstance(org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.functors.TransformerPredicate
Factory to create the predicate.
Factory to create the predicate.
Factory method that performs validation.
getInstance(org.apache.commons.collections.Transformer[]) - static method in class org.apache.commons.collections.functors.ChainedTransformer
Factory method that performs validation and copies the parameter array.
getInstance(String) - static method in class org.apache.commons.collections.functors.InvokerTransformer
Gets an instance of this transformer calling a specific method with no arguments.
getInstance(String,Class[],Object[]) - static method in class org.apache.commons.collections.functors.InvokerTransformer
Gets an instance of this transformer calling a specific method with specific values.
getInt(String) - method in class org.apache.commons.collections.ExtendedProperties
The purpose of this method is to get the configuration resource with the given name as an integer.
getInt(String,int) - method in class org.apache.commons.collections.ExtendedProperties
The purpose of this method is to get the configuration resource with the given name as an integer, or a default value.
getInteger(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Integer from a Map in a null-safe manner.
getInteger(Map,Object,Integer) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into an integer, using the default value if the the conversion fails.
getInteger(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a int associated with the given configuration key.
getInteger(String,int) - method in class org.apache.commons.collections.ExtendedProperties
Get a int associated with the given configuration key.
getInteger(String,Integer) - method in class org.apache.commons.collections.ExtendedProperties
Get a int associated with the given configuration key.
getIntValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets an int from a Map in a null-safe manner.
getIntValue(Map,Object,int) - static method in class org.apache.commons.collections.MapUtils
Gets an int from a Map in a null-safe manner, using the default value if the the conversion fails.
getIterator() - method in class org.apache.commons.collections.iterators.AbstractIteratorDecorator
Gets the iterator being decorated.
getIterator() - method in class org.apache.commons.collections.iterators.FilterIterator
Gets the iterator this iterator is using.
getIterator() - method in class org.apache.commons.collections.iterators.IteratorEnumeration
Returns the underlying iterator.
getIterator() - method in class org.apache.commons.collections.iterators.ProxyIterator
Getter for property iterator.
getIterator() - method in class org.apache.commons.collections.iterators.TransformIterator
Gets the iterator this iterator is using.
getIterator(Object) - static method in class org.apache.commons.collections.IteratorUtils
Gets a suitable Iterator for the given object.
getIterators() - method in class org.apache.commons.collections.iterators.CollatingIterator
Gets the list of Iterators (unmodifiable).
getIterators() - method in class org.apache.commons.collections.iterators.IteratorChain
Get the list of Iterators (unmodifiable)
getKey() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
Gets the key from the pair.
getKey() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashMapIterator
getKey() - method in class org.apache.commons.collections.keyvalue.AbstractKeyValue
Gets the key from the pair.
getKey() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
getKey() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
Gets the key from the pair.
getKey() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Gets the key from the entry.
getKey() - method in class org.apache.commons.collections.DefaultMapEntry
Gets the key from the Map Entry.
getKey() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
getKey() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.KeyValue
Gets the key from the pair.
getKey() - method in class org.apache.commons.collections.MapIterator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.map.SingletonMap
Gets the key.
getKey() - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Gets the key of this entry
getKey() - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Gets the current key, which is the key returned by the last call to next().
getKey() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
getKey(int) - method in class org.apache.commons.collections.keyvalue.MultiKey
Gets the key at the specified index.
getKey(Object) - method in class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
getKey(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Gets the key that is currently mapped to the specified value.
getKey(Object) - method in class org.apache.commons.collections.BidiMap
Gets the key that is currently mapped to the specified value.
getKey(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns the key to which this map maps the specified value.
GETKEY_INVALID - static field in class org.apache.commons.collections.map.AbstractHashedMap
getKeyForValue(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Returns the key to which this map maps the specified value.
getKeys() - method in class org.apache.commons.collections.ExtendedProperties
Get the list of the keys contained in the configuration repository.
getKeys() - method in class org.apache.commons.collections.keyvalue.MultiKey
Gets a clone of the array of keys.
getKeys(String) - method in class org.apache.commons.collections.ExtendedProperties
Get the list of the keys contained in the configuration repository that match the specified prefix.
getLast() - method in class org.apache.commons.collections.list.AbstractLinkedList
getLast() - method in class org.apache.commons.collections.CursorableLinkedList
Returns the element at the end of this list.
getLast() - method in class org.apache.commons.collections.SequencedHashMap
Return the entry for the "newest" mapping.
getLastKey() - method in class org.apache.commons.collections.SequencedHashMap
Return the key for the "newest" mapping.
getLastNodeReturned() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
Gets the last node returned.
getLastValue() - method in class org.apache.commons.collections.SequencedHashMap
Return the value for the "newest" mapping.
getList() - method in class org.apache.commons.collections.list.AbstractListDecorator
Gets the list being decorated.
getList() - method in class org.apache.commons.collections.list.PredicatedList
Gets the list being decorated.
getList() - method in class org.apache.commons.collections.list.SynchronizedList
Gets the decorated list.
getList() - method in class org.apache.commons.collections.list.TransformedList
Gets the decorated list.
getListableAt(int) - method in class org.apache.commons.collections.CursorableLinkedList
Returns the org.apache.commons.collections.CursorableLinkedList.Listable at the specified index.
getListIterator() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
Gets the iterator being decorated.
getListIterator() - method in class org.apache.commons.collections.iterators.FilterListIterator
Gets the iterator this iterator is using.
getListIterator() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Getter for property iterator.
getLong(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Long from a Map in a null-safe manner.
getLong(Map,Object,Long) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a long, using the default value if the the conversion fails.
getLong(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a long associated with the given configuration key.
getLong(String,Long) - method in class org.apache.commons.collections.ExtendedProperties
Get a long associated with the given configuration key.
getLongValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a long from a Map in a null-safe manner.
getLongValue(Map,Object,long) - static method in class org.apache.commons.collections.MapUtils
Gets a long from a Map in a null-safe manner, using the default value if the the conversion fails.
getMap() - method in class org.apache.commons.collections.bag.AbstractMapBag
Utility method for implementations to access the map that backs this bag.
getMap() - method in class org.apache.commons.collections.map.AbstractMapDecorator
Gets the map being decorated.
getMap() - method in class org.apache.commons.collections.DefaultMapBag
Utility method for implementations to access the map that backs this bag.
getMap() - method in class org.apache.commons.collections.functors.MapTransformer
Gets the map to lookup in.
getMap(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Map from a Map in a null-safe manner.
getMap(Map,Object,Map) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a map, using the default value if the the conversion fails.
getMapEntry() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
Gets the map being decorated.
getMapIterator() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Gets the iterator being decorated.
getMaximumCacheSize() - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Gets the maximum size of the cache.
getMaximumSize() - method in class org.apache.commons.collections.LRUMap
Getter for property maximumSize.
getNextNode() - method in class org.apache.commons.collections.list.AbstractLinkedList.Node
Gets the next node.
getNode(int,boolean) - method in class org.apache.commons.collections.list.AbstractLinkedList
Gets the node at a particular index.
getNodeFromCache() - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Gets a node from the cache.
getNumber(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Number from a Map in a null-safe manner.
getNumber(Map,Object,Number) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a number, using the default value if the the conversion fails.
getObject(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets from a Map in a null-safe manner.
getObject(Map,Object,Object) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting null into the given default value.
getOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
Gets the map being decorated.
getOrderedMap() - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
Gets the map being decorated.
getOrderedMapIterator() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Gets the iterator being decorated.
getPredicate() - method in class org.apache.commons.collections.iterators.FilterIterator
Gets the predicate this iterator is using.
getPredicate() - method in class org.apache.commons.collections.iterators.FilterListIterator
Gets the predicate this iterator is using.
getPredicate() - method in class org.apache.commons.collections.functors.IfClosure
Gets the predicate.
getPredicate() - method in class org.apache.commons.collections.functors.PredicateTransformer
Gets the predicate.
getPredicate() - method in class org.apache.commons.collections.functors.WhileClosure
Gets the predicate in use.
getPredicates() - method in class org.apache.commons.collections.functors.AllPredicate
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.AndPredicate
Gets the two predicates being decorated as an array.
getPredicates() - method in class org.apache.commons.collections.functors.AnyPredicate
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.NonePredicate
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.NotPredicate
Gets the predicate being decorated.
getPredicates() - method in class org.apache.commons.collections.functors.NullIsExceptionPredicate
Gets the predicate being decorated.
getPredicates() - method in class org.apache.commons.collections.functors.NullIsFalsePredicate
Gets the predicate being decorated.
getPredicates() - method in class org.apache.commons.collections.functors.NullIsTruePredicate
Gets the predicate being decorated.
getPredicates() - method in class org.apache.commons.collections.functors.OnePredicate
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.OrPredicate
Gets the two predicates being decorated as an array.
getPredicates() - method in class org.apache.commons.collections.functors.PredicateDecorator
Gets the predicates being decorated as an array.
getPredicates() - method in class org.apache.commons.collections.functors.SwitchClosure
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.SwitchTransformer
Gets the predicates, do not modify the array.
getPredicates() - method in class org.apache.commons.collections.functors.TransformedPredicate
Gets the predicate being decorated.
getPreviousNode() - method in class org.apache.commons.collections.list.AbstractLinkedList.Node
Gets the previous node.
getProperties(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a list of properties associated with the given configuration key.
getProperties(String,Properties) - method in class org.apache.commons.collections.ExtendedProperties
Get a list of properties associated with the given configuration key.
getProperty(String) - method in class org.apache.commons.collections.ExtendedProperties
Gets a property from the configuration.
getReadMethod(Object) - method in class org.apache.commons.collections.BeanMap
Returns the accessor for the property with the given name.
getReadMethod(String) - method in class org.apache.commons.collections.BeanMap
Returns the accessor for the property with the given name.
getSet() - method in class org.apache.commons.collections.set.AbstractSetDecorator
Gets the set being decorated.
getSet() - method in class org.apache.commons.collections.set.PredicatedSet
Gets the set being decorated.
getSet() - method in class org.apache.commons.collections.set.SynchronizedSet
Gets the decorated set.
getShort(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a Short from a Map in a null-safe manner.
getShort(Map,Object,Short) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a short, using the default value if the the conversion fails.
getShort(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a short associated with the given configuration key.
getShort(String,Short) - method in class org.apache.commons.collections.ExtendedProperties
Get a short associated with the given configuration key.
getShortValue(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a short from a Map in a null-safe manner.
getShortValue(Map,Object,short) - static method in class org.apache.commons.collections.MapUtils
Gets a short from a Map in a null-safe manner, using the default value if the the conversion fails.
getSortedBag() - method in class org.apache.commons.collections.bag.AbstractSortedBagDecorator
Gets the bag being decorated.
getSortedBag() - method in class org.apache.commons.collections.bag.PredicatedSortedBag
Gets the decorated sorted bag.
getSortedBag() - method in class org.apache.commons.collections.bag.SynchronizedSortedBag
Gets the bag being decorated.
getSortedBag() - method in class org.apache.commons.collections.bag.TransformedSortedBag
Gets the decorated bag.
getSortedBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
Gets the map being decorated.
getSortedMap() - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
Gets the map being decorated.
getSortedMap() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
Gets the map being decorated.
getSortedMap() - method in class org.apache.commons.collections.map.LazySortedMap
Gets the map being decorated.
getSortedMap() - method in class org.apache.commons.collections.map.PredicatedSortedMap
Gets the map being decorated.
getSortedMap() - method in class org.apache.commons.collections.map.TransformedSortedMap
Gets the map being decorated.
getSortedSet() - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
Gets the sorted set being decorated.
getSortedSet() - method in class org.apache.commons.collections.set.SynchronizedSortedSet
Gets the decorated set.
getSortedSet() - method in class org.apache.commons.collections.set.TransformedSortedSet
Gets the decorated set.
getStartIndex() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Gets the start index to loop from.
getString(Map,Object) - static method in class org.apache.commons.collections.MapUtils
Gets a String from a Map in a null-safe manner.
getString(Map,Object,String) - static method in class org.apache.commons.collections.MapUtils
Looks up the given key in the given map, converting the result into a string, using the default value if the the conversion fails.
getString(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a string associated with the given configuration key.
getString(String,String) - method in class org.apache.commons.collections.ExtendedProperties
Get a string associated with the given configuration key.
getStringArray(String) - method in class org.apache.commons.collections.ExtendedProperties
Get an array of strings associated with the given configuration key.
getTransformer() - method in class org.apache.commons.collections.functors.TransformedPredicate
Gets the transformer in use.
getTransformer() - method in class org.apache.commons.collections.functors.TransformerClosure
Gets the transformer.
getTransformer() - method in class org.apache.commons.collections.functors.TransformerPredicate
Gets the transformer.
getTransformer() - method in class org.apache.commons.collections.iterators.TransformIterator
Gets the transformer this iterator is using.
getTransformers() - method in class org.apache.commons.collections.functors.ChainedTransformer
Gets the transformers, do not modify the array.
getTransformers() - method in class org.apache.commons.collections.functors.SwitchTransformer
Gets the transformers, do not modify the array.
getTrueClosure() - method in class org.apache.commons.collections.functors.IfClosure
Gets the closure called when true.
getTrueFirstComparator() - static method in class org.apache.commons.collections.comparators.BooleanComparator
Returns a BooleanComparator instance that sorts true values before false values.
getType() - method in class org.apache.commons.collections.functors.InstanceofPredicate
Gets the type to compare to.
getType(String) - method in class org.apache.commons.collections.BeanMap
Returns the type of the property with the given name.
getTypeTransformer(Class) - method in class org.apache.commons.collections.BeanMap
Returns a transformer for the given primitive type.
getUnknownObjectBehavior() - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Gets the behavior for comparing unknown objects.
getValue() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
Gets the value from the pair.
getValue() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashMapIterator
getValue() - method in class org.apache.commons.collections.keyvalue.AbstractKeyValue
Gets the value from the pair.
getValue() - method in class org.apache.commons.collections.list.AbstractLinkedList.Node
Gets the value of the node.
getValue() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
getValue() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
Gets the value from the pair.
getValue() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Gets the value from the entry.
getValue() - method in class org.apache.commons.collections.DefaultMapEntry
Gets the value from the Map Entry.
getValue() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
getValue() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.functors.EqualPredicate
Gets the value.
getValue() - method in class org.apache.commons.collections.functors.IdentityPredicate
Gets the value.
getValue() - method in class org.apache.commons.collections.KeyValue
Gets the value from the pair.
getValue() - method in class org.apache.commons.collections.MapIterator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.map.SingletonMap
Gets the value.
getValue() - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Gets the value of this entry direct from the map.
getValue() - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Gets the current value, which is the value associated with the last key returned by next().
getValue() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
getValue(int) - method in class org.apache.commons.collections.map.LinkedMap
Gets the value at the specified index.
getValue(int) - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the value at the specified index.
getValue(int) - method in class org.apache.commons.collections.SequencedHashMap
Gets the value at the specified index.
GETVALUE_INVALID - static field in class org.apache.commons.collections.map.AbstractHashedMap
getVector(String) - method in class org.apache.commons.collections.ExtendedProperties
Get a Vector of strings associated with the given configuration key.
getVector(String,Vector) - method in class org.apache.commons.collections.ExtendedProperties
Get a Vector of strings associated with the given configuration key.
getWriteMethod(Object) - method in class org.apache.commons.collections.BeanMap
Returns the mutator for the property with the given name.
getWriteMethod(String) - method in class org.apache.commons.collections.BeanMap
Returns the mutator for the property with the given name.
grow() - method in class org.apache.commons.collections.BinaryHeap
Increases the size of the heap to support additional elements
grow() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Increases the size of the heap to support additional elements

H

HARD - static field in class org.apache.commons.collections.map.AbstractReferenceMap
Constant indicating that hard references should be used
HARD - static field in class org.apache.commons.collections.ReferenceMap
Constant indicating that hard references should be used.
hash(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the hash code for the key specified.
hash(Object) - method in class org.apache.commons.collections.map.IdentityMap
Gets the hash code for the key specified.
hash(Object) - method in class org.apache.commons.collections.map.ReferenceIdentityMap
Gets the hash code for the key specified.
hash(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the hash code for the specified multi-key.
hash(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the hash code for the specified multi-key.
hash(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the hash code for the specified multi-key.
hash(Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Gets the hash code for the specified multi-key.
HashBag - class org.apache.commons.collections.HashBag
A Bag that is backed by a HashMap.
HashBag - class org.apache.commons.collections.bag.HashBag
Implements Bag, using a HashMap to provide the data storage.
HashBag() - constructor for class org.apache.commons.collections.HashBag
Constructs an empty HashBag.
HashBag() - constructor for class org.apache.commons.collections.bag.HashBag
Constructs an empty HashBag.
HashBag(Collection) - constructor for class org.apache.commons.collections.HashBag
Constructs a Bag containing all the members of the given collection.
HashBag(Collection) - constructor for class org.apache.commons.collections.bag.HashBag
Constructs a bag containing all the members of the given collection.
hashCode - field in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
The hash code of the key
hashCode() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
hashCode() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
hashCode() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the standard Map hashCode.
hashCode() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
hashCode() - method in class org.apache.commons.collections.list.AbstractLinkedList
hashCode() - method in class org.apache.commons.collections.bag.AbstractMapBag
Gets a hash code for the Bag compatible with the definition of equals.
hashCode() - method in class org.apache.commons.collections.bag.AbstractMapBag.MutableInteger
hashCode() - method in class org.apache.commons.collections.map.AbstractMapDecorator
hashCode() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntry
Gets a hashCode compatible with the equals method.
hashCode() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
hashCode() - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Gets the hashcode of the entry using temporary hard references.
hashCode() - method in class org.apache.commons.collections.comparators.BooleanComparator
Implement a hash code for this comparator that is consistent with equals.
hashCode() - method in class org.apache.commons.collections.comparators.ComparableComparator
Implement a hash code for this comparator that is consistent with equals.
hashCode() - method in class org.apache.commons.collections.comparators.ComparatorChain
Implement a hash code for this comparator that is consistent with equals.
hashCode() - method in class org.apache.commons.collections.map.CompositeMap
Gets a hash code for the Map as per the Map specification.
hashCode() - method in class org.apache.commons.collections.set.CompositeSet
hashCode() - method in class org.apache.commons.collections.CursorableLinkedList
Returns the hash code value for this list.
hashCode() - method in class org.apache.commons.collections.keyvalue.DefaultKeyValue
Gets a hashCode compatible with the equals method.
hashCode() - method in class org.apache.commons.collections.DefaultMapBag
Returns the hash code of the underlying map.
hashCode() - method in class org.apache.commons.collections.DefaultMapEntry
Gets a hashCode compatible with the equals method.
hashCode() - method in class org.apache.commons.collections.FastArrayList
Return the hash code value for this list.
hashCode() - method in class org.apache.commons.collections.FastHashMap
Return the hash code value for this map.
hashCode() - method in class org.apache.commons.collections.FastTreeMap
Return the hash code value for this map.
hashCode() - method in class org.apache.commons.collections.map.Flat3Map
Gets the standard Map hashCode.
hashCode() - method in class org.apache.commons.collections.map.IdentityMap.IdentityEntry
hashCode() - method in class org.apache.commons.collections.set.MapBackedSet
hashCode() - method in class org.apache.commons.collections.keyvalue.MultiKey
Gets the combined hash code that is computed from all the keys.
hashCode() - method in class org.apache.commons.collections.map.MultiKeyMap
hashCode() - method in class org.apache.commons.collections.comparators.NullComparator
Implement a hash code for this comparator that is consistent with equals(Object).
hashCode() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.hashCode() method.
hashCode() - method in class org.apache.commons.collections.comparators.ReverseComparator
Implement a hash code for this comparator that is consistent with equals.
hashCode() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.hashCode().
hashCode() - method in class org.apache.commons.collections.map.SingletonMap
Gets the standard Map hashCode.
hashCode() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.hashCode().
hashCode() - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the hash code, as per the Map specification.
hashCode() - method in class org.apache.commons.collections.collection.SynchronizedCollection
hashCode() - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Gets a hashCode compatible with the equals method.
hashCode() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the hash code value for this map as per the API.
hashCodeForList(Collection) - static method in class org.apache.commons.collections.ListUtils
Generates a hash code using the algorithm specified in java.util.List.hashCode().
hashCodeForSet(Collection) - static method in class org.apache.commons.collections.SetUtils
Generates a hash code using the algorithm specified in java.util.Set.hashCode().
HashedMap - class org.apache.commons.collections.map.HashedMap
A Map implementation that is a general purpose alternative to HashMap.
HashedMap() - constructor for class org.apache.commons.collections.map.HashedMap
Constructs a new empty map with default size and load factor.
HashedMap(int) - constructor for class org.apache.commons.collections.map.HashedMap
Constructs a new, empty map with the specified initial capacity.
HashedMap(int,float) - constructor for class org.apache.commons.collections.map.HashedMap
Constructs a new, empty map with the specified initial capacity and load factor.
HashedMap(Map) - constructor for class org.apache.commons.collections.map.HashedMap
Constructor copying elements from another map.
AbstractHashedMap.HashEntry - class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
HashEntry used to store the data.
hashEntry(Object,Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Gets the hash code for a MapEntry.
hashEntry(Object,Object) - method in class org.apache.commons.collections.map.ReferenceIdentityMap
Gets the hash code for a MapEntry.
hashIndex - field in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
The current index into the array of buckets
hashIndex(int,int) - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the index into the data storage for the hashCode specified.
AbstractHashedMap.HashIterator - class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
Base Iterator
AbstractHashedMap.HashMapIterator - class org.apache.commons.collections.map.AbstractHashedMap.HashMapIterator
MapIterator implementation.
hasMoreElements() - method in class org.apache.commons.collections.iterators.IteratorEnumeration
Returns true if the underlying iterator has more elements.
hasNext - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
Whether there is another element in the iteration
hasNext() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
hasNext() - method in class org.apache.commons.collections.iterators.AbstractIteratorDecorator
hasNext() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
hasNext() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
hasNext() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
hasNext() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
hasNext() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.iterators.ArrayIterator
Returns true if there are more elements to return from the array.
hasNext() - method in class org.apache.commons.collections.iterators.CollatingIterator
Returns true if any child iterator has remaining elements.
hasNext() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
hasNext() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.iterators.EnumerationIterator
Returns true if the underlying enumeration has more elements.
hasNext() - method in class org.apache.commons.collections.iterators.FilterIterator
Returns true if the underlying iterator contains an object that matches the predicate.
hasNext() - method in class org.apache.commons.collections.iterators.FilterListIterator
hasNext() - method in class org.apache.commons.collections.iterators.IteratorChain
Return true if any Iterator in the IteratorChain has a remaining element.
hasNext() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns true if there are more elements in the iterator.
hasNext() - method in class org.apache.commons.collections.iterators.LoopingIterator
Has the iterator any more elements.
hasNext() - method in class org.apache.commons.collections.MapIterator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Returns true if there are more elements to return from the array.
hasNext() - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Checks whether there are any more elements in the iteration to obtain.
hasNext() - method in class org.apache.commons.collections.iterators.ProxyIterator
Returns true if the underlying iterator has more elements.
hasNext() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.hasNext() method.
hasNext() - method in class org.apache.commons.collections.iterators.SingletonIterator
Is another object available from the iterator?

This returns true if the single object hasn't been returned yet.

hasNext() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Is another object available from the iterator?

This returns true if the single object hasn't been returned yet.

hasNext() - method in class org.apache.commons.collections.iterators.TransformIterator
hasNext() - method in class org.apache.commons.collections.iterators.UnmodifiableIterator
hasNext() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
hasNext() - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Checks to see if there are more entries still to be iterated.
hasNext() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
hasPrevious() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
hasPrevious() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
hasPrevious() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
hasPrevious() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
hasPrevious() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Checks to see if there is a previous entry that can be iterated to.
hasPrevious() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Returns true if there are previous elements to return from the array.
hasPrevious() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
Checks to see if there is a previous entry that can be iterated to.
hasPrevious() - method in class org.apache.commons.collections.iterators.FilterListIterator
hasPrevious() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns true if there are previous elements in the iterator.
hasPrevious() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Returns true if there are previous elements to return from the array.
hasPrevious() - method in class org.apache.commons.collections.OrderedIterator
Checks to see if there is a previous entry that can be iterated to.
hasPrevious() - method in class org.apache.commons.collections.OrderedMapIterator
Checks to see if there is a previous entry that can be iterated to.
hasPrevious() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.hasPrevious() method.
hasPrevious() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Is a previous object available from the iterator?

This returns true if the single object has been returned.

hasPrevious() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
hasPrevious() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
Checks to see if there is a previous entry that can be iterated to.
head - field in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
The current head index.
header - field in class org.apache.commons.collections.list.AbstractLinkedList
A AbstractLinkedList.Node which indicates the start and end of the list and does not hold a value.
header - field in class org.apache.commons.collections.map.AbstractLinkedMap
Header in the linked list
headMap(Object) - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
headMap(Object) - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
headMap(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
headMap(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
headMap(Object) - method in class org.apache.commons.collections.FastTreeMap
Return a view of the portion of this map whose keys are strictly less than the specified key.
headMap(Object) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
headMap(Object) - method in class org.apache.commons.collections.map.LazySortedMap
headMap(Object) - method in class org.apache.commons.collections.map.PredicatedSortedMap
headMap(Object) - method in class org.apache.commons.collections.map.TransformedSortedMap
headMap(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
headMap(Object) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
headSet(Object) - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
headSet(Object) - method in class org.apache.commons.collections.set.PredicatedSortedSet
headSet(Object) - method in class org.apache.commons.collections.set.SynchronizedSortedSet
headSet(Object) - method in class org.apache.commons.collections.set.TransformedSortedSet
headSet(Object) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet

I

IdentityMap.IdentityEntry - class org.apache.commons.collections.map.IdentityMap.IdentityEntry
HashEntry
IdentityMap - class org.apache.commons.collections.map.IdentityMap
A Map implementation that matches keys and values based on == not equals().
IdentityMap() - constructor for class org.apache.commons.collections.map.IdentityMap
Constructs a new empty map with default size and load factor.
IdentityMap(int) - constructor for class org.apache.commons.collections.map.IdentityMap
Constructs a new, empty map with the specified initial capacity.
IdentityMap(int,float) - constructor for class org.apache.commons.collections.map.IdentityMap
Constructs a new, empty map with the specified initial capacity and load factor.
IdentityMap(Map) - constructor for class org.apache.commons.collections.map.IdentityMap
Constructor copying elements from another map.
IdentityPredicate - class org.apache.commons.collections.functors.IdentityPredicate
Predicate implementation that returns true if the input is the same object as the one stored in this predicate.
IdentityPredicate(Object) - constructor for class org.apache.commons.collections.functors.IdentityPredicate
Constructor that performs no validation.
identityPredicate(Object) - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that checks if the input object is equal to the specified object by identity.
IfClosure - class org.apache.commons.collections.functors.IfClosure
Closure implementation acts as an if statement calling one or other closure based on a predicate.
Create a new Closure that calls one of two closures depending on the specified predicate.
Constructor that performs no validation.
include - static field in class org.apache.commons.collections.ExtendedProperties
This is the name of the property that can point to other properties file for including other properties files.
index - field in class org.apache.commons.collections.iterators.ArrayIterator
The current iterator index
index - field in class org.apache.commons.collections.iterators.ObjectArrayIterator
The current iterator index
index(Object,int) - static method in class org.apache.commons.collections.CollectionUtils
Given an Object, and an index, returns the nth value in the object.
index(Object,Object) - static method in class org.apache.commons.collections.CollectionUtils
Given an Object, and a key (index), returns the value associated with that key in the Object.
indexOf(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
indexOf(Object) - method in class org.apache.commons.collections.list.AbstractListDecorator
indexOf(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Returns the index in this list of the first occurrence of the specified element, or -1 if this list does not contain this element.
indexOf(Object) - method in class org.apache.commons.collections.FastArrayList
Search for the first occurrence of the given argument, testing for equality using the equals() method, and return the corresponding index, or -1 if the object is not found.
indexOf(Object) - method in class org.apache.commons.collections.list.FixedSizeList
indexOf(Object) - method in class org.apache.commons.collections.map.LinkedMap
Gets the index of the specified key.
indexOf(Object) - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the index of the specified key.
indexOf(Object) - method in class org.apache.commons.collections.set.ListOrderedSet
indexOf(Object) - method in class org.apache.commons.collections.list.PredicatedList
indexOf(Object) - method in class org.apache.commons.collections.SequencedHashMap
Gets the index of the specified key.
indexOf(Object) - method in class org.apache.commons.collections.list.SynchronizedList
indexOf(Object) - method in class org.apache.commons.collections.list.TransformedList
indexOf(Object) - method in class org.apache.commons.collections.list.TreeList
Searches for the index of an object in the list.
init() - method in class org.apache.commons.collections.map.AbstractHashedMap
Initialise subclasses during construction, cloning or deserialization.
init() - method in class org.apache.commons.collections.list.AbstractLinkedList
The equivalent of a default constructor, broken out so it can be called by any constructor and by readObject.
init() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Initialise this subclass during construction.
init() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Initialise this subclass during construction, cloning or deserialization.
init() - method in class org.apache.commons.collections.list.CursorableLinkedList
The equivalent of a default constructor called by any constructor and by readObject.
insert(Object) - method in class org.apache.commons.collections.BinaryHeap
Inserts an element into queue.
insert(Object) - method in class org.apache.commons.collections.PriorityQueue
Insert an element into queue.
insert(Object) - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Insert an element into queue.
Inserts a new value into my list, after the specified before element, and before the specified after element
insertOrder - field in class org.apache.commons.collections.map.ListOrderedMap
Internal list to hold the sequence of objects
INSTANCE - static field in class org.apache.commons.collections.functors.CloneTransformer
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyIterator
Singleton instance of the iterator.
INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyListIterator
Singleton instance of the iterator.
INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyMapIterator
Singleton instance of the iterator.
INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyOrderedIterator
Singleton instance of the iterator.
INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyOrderedMapIterator
Singleton instance of the iterator.
INSTANCE - static field in class org.apache.commons.collections.functors.ExceptionClosure
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.ExceptionFactory
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.ExceptionPredicate
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.ExceptionTransformer
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.FalsePredicate
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.NOPClosure
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.NOPTransformer
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.NotNullPredicate
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.NullPredicate
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.StringValueTransformer
Singleton predicate instance
INSTANCE - static field in class org.apache.commons.collections.functors.TruePredicate
Singleton predicate instance
InstanceofPredicate - class org.apache.commons.collections.functors.InstanceofPredicate
Predicate implementation that returns true if the input is an instanceof the type stored in this predicate.
InstanceofPredicate(Class) - constructor for class org.apache.commons.collections.functors.InstanceofPredicate
Constructor that performs no validation.
instanceofPredicate(Class) - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that checks if the object passed in is of a particular type, using instanceof.
InstantiateFactory - class org.apache.commons.collections.functors.InstantiateFactory
Factory implementation that creates a new object instance by reflection.
instantiateFactory(Class) - static method in class org.apache.commons.collections.FactoryUtils
Creates a Factory that can create objects of a specific type using a no-args constructor.
InstantiateFactory(Class) - constructor for class org.apache.commons.collections.functors.InstantiateFactory
Constructor that performs no validation.
instantiateFactory(Class,Class[],Object[]) - static method in class org.apache.commons.collections.FactoryUtils
Creates a Factory that can create objects of a specific type using the arguments specified to this method.
InstantiateFactory(Class,Class[],Object[]) - constructor for class org.apache.commons.collections.functors.InstantiateFactory
Constructor that performs no validation.
InstantiateTransformer - class org.apache.commons.collections.functors.InstantiateTransformer
Transformer implementation that creates a new object instance by reflection.
instantiateTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a Transformer that expects an input Class object that it will instantiate.
InstantiateTransformer(Class[],Object[]) - constructor for class org.apache.commons.collections.functors.InstantiateTransformer
Constructor that performs no validation.
instantiateTransformer(Class[],Object[]) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that expects an input Class object that it will instantiate.
interpolate(String) - method in class org.apache.commons.collections.ExtendedProperties
Interpolate key names to handle ${key} stuff
interpolateHelper(String,List) - method in class org.apache.commons.collections.ExtendedProperties
Recursive handler for multiple levels of interpolation.
intersection(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a Collection containing the intersection of the given Collections.
intersection(List,List) - static method in class org.apache.commons.collections.ListUtils
Returns a new list containing all elements that are contained in both given lists.
invalidate() - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
invalidateCursors() - method in class org.apache.commons.collections.CursorableLinkedList
Informs all of my registered cursors that they are now invalid.
inverseBidiMap - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Inverse view of this map.
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Gets a view of this map where the keys and values are reversed.
inverseBidiMap() - method in class org.apache.commons.collections.BidiMap
Gets a view of this map where the keys and values are reversed.
inverseBidiMap() - method in class org.apache.commons.collections.OrderedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseBidiMap() - method in class org.apache.commons.collections.SortedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the inverse map for comparison.
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
inverseOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
inverseOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
inverseOrderedBidiMap() - method in class org.apache.commons.collections.OrderedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the inverse map for comparison.
inverseOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseOrderedBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
inverseSortedBidiMap() - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
inverseSortedBidiMap() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
inverseSortedBidiMap() - method in class org.apache.commons.collections.SortedBidiMap
Gets a view of this map where the keys and values are reversed.
inverseSortedBidiMap() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
invertMap(Map) - static method in class org.apache.commons.collections.MapUtils
Inverts the supplied map returning a new HashMap such that the keys of the input are swapped with the values.
invokerClosure(String) - static method in class org.apache.commons.collections.ClosureUtils
Creates a Closure that will invoke a specific method on the closure's input object by reflection.
invokerClosure(String,Class[],Object[]) - static method in class org.apache.commons.collections.ClosureUtils
Creates a Closure that will invoke a specific method on the closure's input object by reflection.
invokerPredicate(String) - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that invokes a method on the input object.
invokerPredicate(String,Class[],Object[]) - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that invokes a method on the input object.
InvokerTransformer - class org.apache.commons.collections.functors.InvokerTransformer
Transformer implementation that creates a new object instance by reflection.
invokerTransformer(String) - static method in class org.apache.commons.collections.TransformerUtils
Gets a Transformer that invokes a method on the input object.
InvokerTransformer(String,Class[],Object[]) - constructor for class org.apache.commons.collections.functors.InvokerTransformer
Constructor that performs no validation.
invokerTransformer(String,Class[],Object[]) - static method in class org.apache.commons.collections.TransformerUtils
Gets a Transformer that invokes a method on the input object.
isAscendingOrder() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Checks whether the heap is ascending or descending order.
isAtCapacity() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Tests if the buffer is at capacity.
isCacheFull() - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Checks whether the cache is full.
isDoLoop() - method in class org.apache.commons.collections.functors.WhileClosure
Is the loop a do-while loop.
isEmpty() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
isEmpty() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
isEmpty() - method in class org.apache.commons.collections.map.AbstractHashedMap
Checks whether the map is currently empty.
isEmpty() - method in class org.apache.commons.collections.list.AbstractLinkedList
isEmpty() - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns true if the underlying map is empty.
isEmpty() - method in class org.apache.commons.collections.map.AbstractMapDecorator
isEmpty() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Checks whether the map is currently empty.
isEmpty() - method in class org.apache.commons.collections.BinaryHeap
Tests if queue is empty.
isEmpty() - method in class org.apache.commons.collections.BoundedFifoBuffer
Returns true if this buffer is empty; false otherwise.
isEmpty() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Returns true if this buffer is empty; false otherwise.
isEmpty() - method in class org.apache.commons.collections.collection.CompositeCollection
Checks whether this composite collection is empty.
isEmpty() - method in class org.apache.commons.collections.map.CompositeMap
Returns true if this map contains no key-value mappings.
isEmpty() - method in class org.apache.commons.collections.CursorableLinkedList
Returns true if this list contains no elements.
isEmpty() - method in class org.apache.commons.collections.DefaultMapBag
Returns true if the underlying map is empty.
isEmpty() - method in class org.apache.commons.collections.FastArrayList
Test if this list has no elements.
isEmpty() - method in class org.apache.commons.collections.FastHashMap
Return true if this map contains no mappings.
isEmpty() - method in class org.apache.commons.collections.FastTreeMap
Return true if this map contains no mappings.
isEmpty() - method in class org.apache.commons.collections.map.Flat3Map
Checks whether the map is currently empty.
isEmpty() - method in class org.apache.commons.collections.set.MapBackedSet
isEmpty() - method in class org.apache.commons.collections.map.MultiKeyMap
isEmpty() - method in class org.apache.commons.collections.PriorityQueue
Test if queue is empty.
isEmpty() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.isEmpty() method.
isEmpty() - method in class org.apache.commons.collections.ReferenceMap
Returns true if this map is empty.
isEmpty() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.isEmpty().
isEmpty() - method in class org.apache.commons.collections.map.SingletonMap
Checks whether the map is currently empty, which it never is.
isEmpty() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.isEmpty().
isEmpty() - method in class org.apache.commons.collections.map.StaticBucketMap
Checks if the size is currently zero.
isEmpty() - method in class org.apache.commons.collections.collection.SynchronizedCollection
isEmpty() - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Test if queue is empty.
isEmpty() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Checks whether the map is empty or not.
isEmpty() - method in class org.apache.commons.collections.UnboundedFifoBuffer
Returns true if this buffer is empty; false otherwise.
isEmpty() - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Returns true if this buffer is empty; false otherwise.
isEqualCollection(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns true iff the given Collections contain exactly the same elements with exactly the same cardinalities.
isEqualKey(Object) - method in class org.apache.commons.collections.map.SingletonMap
Compares the specified key to the stored key.
isEqualKey(Object,Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Compares two keys, in internal converted form, to see if they are equal.
isEqualKey(Object,Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Compares two keys, in internal converted form, to see if they are equal.
isEqualKey(Object,Object) - method in class org.apache.commons.collections.map.IdentityMap
Compares two keys for equals.
isEqualKey(Object,Object) - method in class org.apache.commons.collections.map.ReferenceIdentityMap
Compares two keys for equals.
Is the key equal to the combined key.
Is the key equal to the combined key.
Is the key equal to the combined key.
Is the key equal to the combined key.
isEqualList(Collection,Collection) - static method in class org.apache.commons.collections.ListUtils
Tests two lists for value-equality as per the equality contract in java.util.List.equals(java.lang.Object).
isEqualSet(Collection,Collection) - static method in class org.apache.commons.collections.SetUtils
Tests two sets for equality as per the equals() contract in java.util.Set.equals(java.lang.Object).
isEqualValue(Object) - method in class org.apache.commons.collections.map.SingletonMap
Compares the specified value to the stored value.
isEqualValue(Object,Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Compares two values, in external form, to see if they are equal.
isEqualValue(Object,Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
Compares two values for equals.
isEqualValue(Object,Object) - method in class org.apache.commons.collections.map.IdentityMap
Compares two values for equals.
isEqualValue(Object,Object) - method in class org.apache.commons.collections.map.ReferenceIdentityMap
Compares two values for equals.
isFull() - method in class org.apache.commons.collections.BinaryHeap
Tests if queue is full.
isFull() - method in class org.apache.commons.collections.BoundedCollection
Returns true if this collection is full and no new elements can be added.
isFull() - method in class org.apache.commons.collections.BoundedFifoBuffer
Returns true if this collection is full and no new elements can be added.
isFull() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Returns true if this collection is full and no new elements can be added.
isFull() - method in class org.apache.commons.collections.BoundedMap
Returns true if this map is full and no new elements can be added.
isFull() - method in class org.apache.commons.collections.list.FixedSizeList
isFull() - method in class org.apache.commons.collections.map.FixedSizeMap
Returns true if this map is full and no new elements can be added.
isFull() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
isFull() - method in class org.apache.commons.collections.map.LRUMap
Returns true if this map is full and no new mappings can be added.
isFull() - method in class org.apache.commons.collections.map.SingletonMap
Is the map currently full, always true.
isFull() - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
isFull(Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns true if no more elements can be added to the Collection.
isInitialized - field in class org.apache.commons.collections.ExtendedProperties
Has this configuration been intialized.
isInitialized() - method in class org.apache.commons.collections.ExtendedProperties
Indicate to client code whether property resources have been initialized or not.
isLocked - field in class org.apache.commons.collections.comparators.ComparatorChain
Whether the chain has been "locked".
isLocked - field in class org.apache.commons.collections.iterators.IteratorChain
ComparatorChain is "locked" after the first time compare(Object,Object) is called
isLocked() - method in class org.apache.commons.collections.comparators.ComparatorChain
Determine if modifications can still be made to the ComparatorChain.
isLocked() - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Returns true if modifications cannot be made to the FixedOrderComparator.
isLocked() - method in class org.apache.commons.collections.iterators.IteratorChain
Determine if modifications can still be made to the IteratorChain.
isProperSubCollection(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns true iff a is a proper sub-collection of b, that is, iff the cardinality of e in a is less than or equal to the cardinality of e in b, for each element e in a, and there is at least one element f such that the cardinality of f in b is strictly greater than the cardinality of f in a.
isScanUntilRemovable() - method in class org.apache.commons.collections.map.LRUMap
Whether this LRUMap will scan until a removable entry is found when the map is full.
isSetValueChecking() - method in class org.apache.commons.collections.map.PredicatedMap
Override to only return true when there is a value transformer.
isSetValueChecking() - method in class org.apache.commons.collections.map.TransformedMap
Override to only return true when there is a value transformer.
isSubCollection(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns true iff a is a sub-collection of b, that is, iff the cardinality of e in a is less than or equal to the cardinality of e in b, for each element e in a.
IterableMap - interface org.apache.commons.collections.IterableMap
Defines a map that can be iterated directly without needing to create an entry set.
iterator - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
The iterator being wrapped
iterator - field in class org.apache.commons.collections.iterators.AbstractIteratorDecorator
The iterator being decorated
iterator - field in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
The iterator being decorated
iterator - field in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
The iterator being decorated
iterator - field in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
The iterator being decorated
iterator - field in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
The iterator being decorated
iterator() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
iterator() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySet
iterator() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySet
iterator() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.Values
iterator() - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
iterator() - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
iterator() - method in class org.apache.commons.collections.map.AbstractHashedMap.Values
iterator() - method in class org.apache.commons.collections.list.AbstractLinkedList
iterator() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
iterator() - method in class org.apache.commons.collections.bag.AbstractMapBag
Gets an iterator over the bag elements.
iterator() - method in class org.apache.commons.collections.Bag
Returns an Iterator over the entire set of members, including copies due to cardinality.
iterator() - method in class org.apache.commons.collections.BinaryHeap
Returns an iterator over this heap's elements.
iterator() - method in class org.apache.commons.collections.BoundedFifoBuffer
Returns an iterator over this buffer's elements.
iterator() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Returns an iterator over this buffer's elements.
iterator() - method in class org.apache.commons.collections.collection.CompositeCollection
Gets an iterator over all the collections in this composite.
iterator() - method in class org.apache.commons.collections.CursorableLinkedList
Returns a fail-fast iterator.
iterator() - method in class org.apache.commons.collections.list.CursorableLinkedList
Returns an iterator that does not support concurrent modification.
iterator() - method in class org.apache.commons.collections.DefaultMapBag
iterator() - method in class org.apache.commons.collections.FastArrayList
Return an iterator over the elements in this list in proper sequence.
iterator() - method in class org.apache.commons.collections.list.FixedSizeList
iterator() - method in class org.apache.commons.collections.set.ListOrderedSet
iterator() - method in class org.apache.commons.collections.set.MapBackedSet
iterator() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Returns an iterator over this heap's elements.
iterator() - method in class org.apache.commons.collections.SequencedHashMap
Gets an iterator over the keys.
iterator() - method in class org.apache.commons.collections.list.SetUniqueList
iterator() - method in class org.apache.commons.collections.collection.SynchronizedCollection
Iterators must be manually synchronized.
iterator() - method in class org.apache.commons.collections.list.TreeList
Gets an iterator over the list.
iterator() - method in class org.apache.commons.collections.UnboundedFifoBuffer
Returns an iterator over this buffer's elements.
iterator() - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Returns an iterator over this buffer's elements.
iterator() - method in class org.apache.commons.collections.bag.UnmodifiableBag
iterator() - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
iterator() - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
iterator() - method in class org.apache.commons.collections.collection.UnmodifiableCollection
iterator() - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
iterator() - method in class org.apache.commons.collections.list.UnmodifiableList
iterator() - method in class org.apache.commons.collections.set.UnmodifiableSet
iterator() - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
iterator() - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
iterator(Object) - method in class org.apache.commons.collections.MultiHashMap
Gets an iterator for the collection mapped to the specified key.
iteratorChain - field in class org.apache.commons.collections.iterators.IteratorChain
The chain of iterators
IteratorChain - class org.apache.commons.collections.iterators.IteratorChain
An IteratorChain is an Iterator that wraps a number of Iterators.
IteratorChain() - constructor for class org.apache.commons.collections.iterators.IteratorChain
Construct an IteratorChain with no Iterators.
IteratorChain(Collection) - constructor for class org.apache.commons.collections.iterators.IteratorChain
Constructs a new IteratorChain over the collection of iterators.
IteratorChain(Iterator) - constructor for class org.apache.commons.collections.iterators.IteratorChain
Construct an IteratorChain with a single Iterator.
IteratorChain(Iterator,Iterator) - constructor for class org.apache.commons.collections.iterators.IteratorChain
Constructs a new IteratorChain over the two given iterators.
IteratorChain(Iterator[]) - constructor for class org.apache.commons.collections.iterators.IteratorChain
Constructs a new IteratorChain over the array of iterators.
IteratorEnumeration - class org.apache.commons.collections.iterators.IteratorEnumeration
Adapter to make an Iterator instance appear to be an Enumeration instance.
IteratorEnumeration() - constructor for class org.apache.commons.collections.iterators.IteratorEnumeration
Constructs a new IteratorEnumeration that will not function until setIterator is invoked.
IteratorEnumeration(Iterator) - constructor for class org.apache.commons.collections.iterators.IteratorEnumeration
Constructs a new IteratorEnumeration that will use the given iterator.
IteratorUtils - class org.apache.commons.collections.IteratorUtils
Provides static utility methods and decorators for Iterator instances.
IteratorUtils() - constructor for class org.apache.commons.collections.IteratorUtils
IteratorUtils is not normally instantiated.

K

key - field in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
The key
key - field in class org.apache.commons.collections.keyvalue.AbstractKeyValue
The key
keyIterator() - method in class org.apache.commons.collections.BeanMap
Convenience method for getting an iterator over the keys.
keyPredicate - field in class org.apache.commons.collections.map.PredicatedMap
The key predicate to use
keysAsListed - field in class org.apache.commons.collections.ExtendedProperties
These are the keys in the order they listed in the configuration file.
AbstractDualBidiMap.KeySet - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySet
Inner class KeySet.
AbstractHashedMap.KeySet - class org.apache.commons.collections.map.AbstractHashedMap.KeySet
KeySet implementation.
keySet() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Gets a keySet view of the map.
keySet() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the keySet view of the map.
keySet() - method in class org.apache.commons.collections.map.AbstractMapDecorator
keySet() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Returns a set view of this map's keys.
keySet() - method in class org.apache.commons.collections.BeanMap
Get the keys for this BeanMap.
keySet() - method in class org.apache.commons.collections.map.CompositeMap
Returns a set view of the keys contained in this map.
keySet() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a set view of the keys contained in this map.
keySet() - method in class org.apache.commons.collections.FastHashMap
Return a set view of the keys contained in this map.
keySet() - method in class org.apache.commons.collections.FastTreeMap
Return a set view of the keys contained in this map.
keySet() - method in class org.apache.commons.collections.map.FixedSizeMap
keySet() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
keySet() - method in class org.apache.commons.collections.map.Flat3Map
Gets the keySet view of the map.
keySet() - method in class org.apache.commons.collections.map.ListOrderedMap
keySet() - method in class org.apache.commons.collections.map.MultiKeyMap
keySet() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.keySet() method.
keySet() - method in class org.apache.commons.collections.ReferenceMap
Returns a set view of this map's keys.
keySet() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.keySet().
keySet() - method in class org.apache.commons.collections.map.SingletonMap
Gets the unmodifiable keySet view of the map.
keySet() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.keySet().
keySet() - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the key set.
keySet() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns a set view of the keys contained in this map in key order.
keySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
keySet() - method in class org.apache.commons.collections.map.UnmodifiableMap
keySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
keySet() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
keySet() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
keySet() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
KeySet(org.apache.commons.collections.bidimap.AbstractDualBidiMap) - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySet
Constructs a new view of the BidiMap.
KeySet(org.apache.commons.collections.map.AbstractHashedMap) - constructor for class org.apache.commons.collections.map.AbstractHashedMap.KeySet
keySetByValue() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a set view of the keys contained in this map.
AbstractDualBidiMap.KeySetIterator - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
Inner class KeySetIterator.
AbstractHashedMap.KeySetIterator - class org.apache.commons.collections.map.AbstractHashedMap.KeySetIterator
KeySet iterator.
AbstractLinkedMap.KeySetIterator - class org.apache.commons.collections.map.AbstractLinkedMap.KeySetIterator
KeySet iterator.
Constructor.
keyTransformer - field in class org.apache.commons.collections.map.TransformedMap
The transformer to use for the key
keyType - field in class org.apache.commons.collections.map.AbstractReferenceMap
The reference type for keys.
KeyValue - interface org.apache.commons.collections.KeyValue
Defines a simple key value pair.

L

last - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
The last returned entry
last - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
The last returned entry
last - field in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
The last returned entry
last - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
The current (last returned) entry
last() - method in class org.apache.commons.collections.bag.AbstractSortedBagDecorator
last() - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
last() - method in class org.apache.commons.collections.bag.PredicatedSortedBag
last() - method in class org.apache.commons.collections.set.PredicatedSortedSet
last() - method in class org.apache.commons.collections.SortedBag
Returns the last (highest) member.
last() - method in class org.apache.commons.collections.bag.SynchronizedSortedBag
last() - method in class org.apache.commons.collections.set.SynchronizedSortedSet
last() - method in class org.apache.commons.collections.bag.TransformedSortedBag
last() - method in class org.apache.commons.collections.set.TransformedSortedSet
last() - method in class org.apache.commons.collections.TreeBag
Returns the last (highest) member.
last() - method in class org.apache.commons.collections.bag.TreeBag
lastIndexOf(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
lastIndexOf(Object) - method in class org.apache.commons.collections.list.AbstractListDecorator
lastIndexOf(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Returns the index in this list of the last occurrence of the specified element, or -1 if this list does not contain this element.
lastIndexOf(Object) - method in class org.apache.commons.collections.FastArrayList
Search for the last occurrence of the given argument, testing for equality using the equals() method, and return the corresponding index, or -1 if the object is not found.
lastIndexOf(Object) - method in class org.apache.commons.collections.list.FixedSizeList
lastIndexOf(Object) - method in class org.apache.commons.collections.list.PredicatedList
lastIndexOf(Object) - method in class org.apache.commons.collections.SequencedHashMap
Gets the last index of the specified key.
lastIndexOf(Object) - method in class org.apache.commons.collections.list.SynchronizedList
lastIndexOf(Object) - method in class org.apache.commons.collections.list.TransformedList
lastItemIndex - field in class org.apache.commons.collections.iterators.ArrayListIterator
Holds the index of the last item returned by a call to next() or previous().
lastItemIndex - field in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Holds the index of the last item returned by a call to next() or previous().
lastKey - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
The last returned key
lastKey() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets the last key in the map, which is the first inserted.
lastKey() - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
lastKey() - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
lastKey() - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
lastKey() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
lastKey() - method in class org.apache.commons.collections.FastTreeMap
Return the last (highest) key currently in this sorted map.
lastKey() - method in class org.apache.commons.collections.map.LazySortedMap
lastKey() - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the last key in this map by insert order.
lastKey() - method in class org.apache.commons.collections.OrderedMap
Gets the last key currently in this map.
lastKey() - method in class org.apache.commons.collections.map.PredicatedSortedMap
lastKey() - method in class org.apache.commons.collections.map.SingletonMap
Gets the last (and only) key in the map.
lastKey() - method in class org.apache.commons.collections.map.TransformedSortedMap
lastKey() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the last (highest) key currently in this map.
lastKey() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
lastUsedIterator - field in class org.apache.commons.collections.iterators.IteratorChain
The "last used" Iterator is the Iterator upon which next() or hasNext() was most recently called used for the remove() operation only
lastUsedIterator - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The last used iterator, needed for remove()
lastValue - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
The last returned value
LazyList - class org.apache.commons.collections.list.LazyList
Decorates another List to create objects in the list on demand.
LazyList(List,org.apache.commons.collections.Factory) - constructor for class org.apache.commons.collections.list.LazyList
Constructor that wraps (not copies).
lazyList(List,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.ListUtils
Returns a "lazy" list whose elements will be created on demand.
LazyMap - class org.apache.commons.collections.map.LazyMap
Decorates another Map to create objects in the map on demand.
LazyMap(Map,org.apache.commons.collections.Factory) - constructor for class org.apache.commons.collections.map.LazyMap
Constructor that wraps (not copies).
lazyMap(Map,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.MapUtils
Returns a "lazy" map whose values will be created on demand.
LazyMap(Map,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.map.LazyMap
Constructor that wraps (not copies).
lazyMap(Map,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.MapUtils
Returns a "lazy" map whose values will be created on demand.
LazySortedMap - class org.apache.commons.collections.map.LazySortedMap
Decorates another SortedMap to create objects in the map on demand.
LazySortedMap(SortedMap,org.apache.commons.collections.Factory) - constructor for class org.apache.commons.collections.map.LazySortedMap
Constructor that wraps (not copies).
lazySortedMap(SortedMap,org.apache.commons.collections.Factory) - static method in class org.apache.commons.collections.MapUtils
Returns a "lazy" sorted map whose values will be created on demand.
LazySortedMap(SortedMap,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.map.LazySortedMap
Constructor that wraps (not copies).
lazySortedMap(SortedMap,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.MapUtils
Returns a "lazy" sorted map whose values will be created on demand.
A list iterator over the linked list.
Create a ListIterator for a list.
LinkedMap - class org.apache.commons.collections.map.LinkedMap
A Map implementation that maintains the order of the entries.
LinkedMap() - constructor for class org.apache.commons.collections.map.LinkedMap
Constructs a new empty map with default size and load factor.
LinkedMap(int) - constructor for class org.apache.commons.collections.map.LinkedMap
Constructs a new, empty map with the specified initial capacity.
LinkedMap(int,float) - constructor for class org.apache.commons.collections.map.LinkedMap
Constructs a new, empty map with the specified initial capacity and load factor.
LinkedMap(Map) - constructor for class org.apache.commons.collections.map.LinkedMap
Constructor copying elements from another map.
AbstractLinkedList.LinkedSubList - class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
The sublist implementation for AbstractLinkedList.
A list iterator over the linked sub list.
AbstractLinkedMap.LinkEntry - class org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry
LinkEntry that stores the data.
Constructs a new entry.
AbstractLinkedMap.LinkIterator - class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
Base Iterator that iterates in link order.
AbstractLinkedMap.LinkMapIterator - class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
MapIterator implementation.
list - field in class org.apache.commons.collections.FastArrayList
The underlying list we are managing.
listIterator() - method in class org.apache.commons.collections.list.AbstractLinkedList
listIterator() - method in class org.apache.commons.collections.list.AbstractListDecorator
listIterator() - method in class org.apache.commons.collections.CursorableLinkedList
Returns a fail-fast ListIterator.
listIterator() - method in class org.apache.commons.collections.list.CursorableLinkedList
Returns a cursor iterator that allows changes to the underlying list in parallel.
listIterator() - method in class org.apache.commons.collections.FastArrayList
Return an iterator of the elements of this list, in proper sequence.
listIterator() - method in class org.apache.commons.collections.list.FixedSizeList
listIterator() - method in class org.apache.commons.collections.list.PredicatedList
listIterator() - method in class org.apache.commons.collections.list.SetUniqueList
listIterator() - method in class org.apache.commons.collections.list.SynchronizedList
Iterators must be manually synchronized.
listIterator() - method in class org.apache.commons.collections.list.TransformedList
listIterator() - method in class org.apache.commons.collections.list.TreeList
Gets a ListIterator over the list.
listIterator() - method in class org.apache.commons.collections.list.UnmodifiableList
listIterator(int) - method in class org.apache.commons.collections.list.AbstractLinkedList
listIterator(int) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
listIterator(int) - method in class org.apache.commons.collections.list.AbstractListDecorator
listIterator(int) - method in class org.apache.commons.collections.CursorableLinkedList
Returns a fail-fast ListIterator.
listIterator(int) - method in class org.apache.commons.collections.list.CursorableLinkedList
Returns a cursor iterator that allows changes to the underlying list in parallel.
listIterator(int) - method in class org.apache.commons.collections.FastArrayList
Return an iterator of the elements of this list, in proper sequence, starting at the specified position.
listIterator(int) - method in class org.apache.commons.collections.list.FixedSizeList
listIterator(int) - method in class org.apache.commons.collections.list.PredicatedList
listIterator(int) - method in class org.apache.commons.collections.list.SetUniqueList
listIterator(int) - method in class org.apache.commons.collections.list.SynchronizedList
Iterators must be manually synchronized.
listIterator(int) - method in class org.apache.commons.collections.list.TransformedList
listIterator(int) - method in class org.apache.commons.collections.list.TreeList
Gets a ListIterator over the list.
listIterator(int) - method in class org.apache.commons.collections.list.UnmodifiableList
ListIteratorWrapper - class org.apache.commons.collections.iterators.ListIteratorWrapper
As the wrapped Iterator is traversed, ListIteratorWrapper builds a LinkedList of its values, permitting all required operations of ListIterator.
ListIteratorWrapper(Iterator) - constructor for class org.apache.commons.collections.iterators.ListIteratorWrapper
Constructs a new ListIteratorWrapper that will wrap the given iterator.
ListOrderedMap - class org.apache.commons.collections.map.ListOrderedMap
Decorates a Map to ensure that the order of addition is retained using a List to maintain order.
ListOrderedMap() - constructor for class org.apache.commons.collections.map.ListOrderedMap
Constructs a new empty ListOrderedMap that decorates a HashMap.
ListOrderedMap(Map) - constructor for class org.apache.commons.collections.map.ListOrderedMap
Constructor that wraps (not copies).
ListOrderedSet - class org.apache.commons.collections.set.ListOrderedSet
Decorates another Set to ensure that the order of addition is retained and used by the iterator.
ListOrderedSet() - constructor for class org.apache.commons.collections.set.ListOrderedSet
Constructs a new empty ListOrderedSet using a HashSet and an ArrayList internally.
ListOrderedSet(Set) - constructor for class org.apache.commons.collections.set.ListOrderedSet
Constructor that wraps (not copies).
ListOrderedSet(Set,List) - constructor for class org.apache.commons.collections.set.ListOrderedSet
Constructor that wraps (not copies) the Set and specifies the list to use.
ListUtils - class org.apache.commons.collections.ListUtils
Provides utility methods and decorators for List instances.
ListUtils() - constructor for class org.apache.commons.collections.ListUtils
ListUtils should not normally be instantiated.
load(InputStream) - method in class org.apache.commons.collections.ExtendedProperties
Load the properties from the given input stream.
load(InputStream,String) - method in class org.apache.commons.collections.ExtendedProperties
Load the properties from the given input stream and using the specified encoding.
loadFactor - field in class org.apache.commons.collections.map.AbstractHashedMap
Load factor, normally 0.75
lock - field in class org.apache.commons.collections.collection.SynchronizedCollection
The object to lock on, needed for List/SortedSet views
logInfo(Exception) - method in class org.apache.commons.collections.BeanMap
Logs the given exception to System.out.
logInfo(Exception) - static method in class org.apache.commons.collections.MapUtils
Logs the given exception to System.out.
logWarn(Exception) - method in class org.apache.commons.collections.BeanMap
Logs the given exception to System.err.
LoopingIterator - class org.apache.commons.collections.iterators.LoopingIterator
An Iterator that restarts when it reaches the end.
loopingIterator(Collection) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that loops continuously over the supplied collection.
LoopingIterator(Collection) - constructor for class org.apache.commons.collections.iterators.LoopingIterator
Constructor that wraps a collection.
LRUMap - class org.apache.commons.collections.LRUMap
An implementation of a Map which has a maximum size and uses a Least Recently Used algorithm to remove items from the Map when the maximum size is reached and new items are added.
LRUMap - class org.apache.commons.collections.map.LRUMap
A Map implementation with a fixed maximum size which removes the least recently used entry if an entry is added when full.
LRUMap() - constructor for class org.apache.commons.collections.LRUMap
Default constructor, primarily for the purpose of de-externalization.
LRUMap() - constructor for class org.apache.commons.collections.map.LRUMap
Constructs a new empty map with a maximum size of 100.
LRUMap(int) - constructor for class org.apache.commons.collections.LRUMap
Create a new LRUMap with a maximum capacity of i.
LRUMap(int) - constructor for class org.apache.commons.collections.map.LRUMap
Constructs a new, empty map with the specified maximum size.
LRUMap(int,boolean) - constructor for class org.apache.commons.collections.map.LRUMap
Constructs a new, empty map with the specified maximum size.
LRUMap(int,float) - constructor for class org.apache.commons.collections.map.LRUMap
Constructs a new, empty map with the specified initial capacity and load factor.
LRUMap(int,float,boolean) - constructor for class org.apache.commons.collections.map.LRUMap
Constructs a new, empty map with the specified initial capacity and load factor.
LRUMap(Map) - constructor for class org.apache.commons.collections.map.LRUMap
Constructor copying elements from another map.
LRUMap(Map,boolean) - constructor for class org.apache.commons.collections.map.LRUMap
Constructor copying elements from another map.

M

m_buffer - field in class org.apache.commons.collections.UnboundedFifoBuffer
m_head - field in class org.apache.commons.collections.UnboundedFifoBuffer
m_priorityQueue - field in class org.apache.commons.collections.SynchronizedPriorityQueue
The underlying priority queue.
m_tail - field in class org.apache.commons.collections.UnboundedFifoBuffer
map - field in class org.apache.commons.collections.map.AbstractMapDecorator
The map to decorate
map - field in class org.apache.commons.collections.FastHashMap
The underlying map we are managing.
map - field in class org.apache.commons.collections.FastTreeMap
The underlying map we are managing.
map - field in class org.apache.commons.collections.set.MapBackedSet
The map being used as the backing store
map - field in class org.apache.commons.collections.map.MultiKeyMap
The decorated map
map - field in class org.apache.commons.collections.ProxyMap
The Map to delegate to.
MapBackedSet - class org.apache.commons.collections.set.MapBackedSet
Decorates a Map to obtain Set behaviour.
AbstractDualBidiMap.MapEntry - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.MapEntry
Inner class MapEntry.
Constructor.
MapIterator - interface org.apache.commons.collections.MapIterator
Defines an iterator that operates over a Map.
mapIterator() - method in class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets an iterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets an iterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Gets a MapIterator over the reference map.
mapIterator() - method in class org.apache.commons.collections.BidiMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.Flat3Map
Gets an iterator over the map.
mapIterator() - method in class org.apache.commons.collections.IterableMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.ListOrderedMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.MultiKeyMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.SingletonMap
Gets an iterator over the map.
mapIterator() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets an iterator over the map entries.
mapIterator() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.UnmodifiableMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
Obtains a MapIterator over the map.
mapIterator() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
Obtains a MapIterator over the map.
CompositeMap.MapMutator - interface org.apache.commons.collections.map.CompositeMap.MapMutator
This interface allows definition for all of the indeterminate mutators in a CompositeMap, as well as providing a hook for callbacks on key collisions.
maps - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Delegate map array.
MapTransformer - class org.apache.commons.collections.functors.MapTransformer
Transformer implementation that returns the value held in a specified map using the input parameter as a key.
mapTransformer(Map) - static method in class org.apache.commons.collections.TransformerUtils
Creates a Transformer that uses the passed in Map to transform the input object (as a simple lookup).
MapUtils - class org.apache.commons.collections.MapUtils
Provides utility methods and decorators for Map and SortedMap instances.
MapUtils() - constructor for class org.apache.commons.collections.MapUtils
MapUtils should not normally be instantiated.
max(Object,Object,Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Returns the larger of the given objects according to the given comparator, returning the second object if the comparator returns equal.
MAXIMUM_CAPACITY - static field in class org.apache.commons.collections.map.AbstractHashedMap
The maximum capacity allowed
maximumCacheSize - field in class org.apache.commons.collections.list.NodeCachingLinkedList
The maximum size of the cache.
maxSize() - method in class org.apache.commons.collections.BoundedCollection
Gets the maximum size of the collection (the bound).
maxSize() - method in class org.apache.commons.collections.BoundedFifoBuffer
Gets the maximum size of the collection (the bound).
maxSize() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Gets the maximum size of the collection (the bound).
maxSize() - method in class org.apache.commons.collections.BoundedMap
Gets the maximum size of the map (the bound).
maxSize() - method in class org.apache.commons.collections.list.FixedSizeList
maxSize() - method in class org.apache.commons.collections.map.FixedSizeMap
Gets the maximum size of the map (the bound).
maxSize() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
maxSize() - method in class org.apache.commons.collections.map.LRUMap
Gets the maximum size of the map (the bound).
maxSize() - method in class org.apache.commons.collections.map.SingletonMap
Gets the maximum size of the map, always 1.
maxSize() - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
maxSize(Collection) - static method in class org.apache.commons.collections.CollectionUtils
Get the maximum number of elements that the Collection can contain.
min(Object,Object,Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Returns the smaller of the given objects according to the given comparator, returning the second object if the comparator returns equal.
modCount - field in class org.apache.commons.collections.map.AbstractHashedMap
Modification count for iterators
modCount - field in class org.apache.commons.collections.list.AbstractLinkedList
Modification count for iterators
moveToMRU(org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry) - method in class org.apache.commons.collections.map.LRUMap
Moves an entry to the MRU position at the end of the list.
MultiHashMap - class org.apache.commons.collections.MultiHashMap
MultiHashMap is the default implementation of the MultiMap interface.
MultiHashMap() - constructor for class org.apache.commons.collections.MultiHashMap
Constructor.
MultiHashMap(int) - constructor for class org.apache.commons.collections.MultiHashMap
Constructor.
MultiHashMap(int,float) - constructor for class org.apache.commons.collections.MultiHashMap
Constructor.
MultiHashMap(Map) - constructor for class org.apache.commons.collections.MultiHashMap
Constructor that copies the input map creating an independent copy.
MultiKey - class org.apache.commons.collections.keyvalue.MultiKey
A MultiKey allows multiple map keys to be merged together.
MultiKey(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking two keys.
MultiKey(Object,Object,Object) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking three keys.
MultiKey(Object,Object,Object,Object) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking four keys.
MultiKey(Object,Object,Object,Object,Object) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking five keys.
MultiKey(Object[]) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking an array of keys which is cloned.
MultiKey(Object[],boolean) - constructor for class org.apache.commons.collections.keyvalue.MultiKey
Constructor taking an array of keys, optionally choosing whether to clone.
MultiKeyMap - class org.apache.commons.collections.map.MultiKeyMap
A Map implementation that uses multiple keys to map the value.
MultiKeyMap() - constructor for class org.apache.commons.collections.map.MultiKeyMap
Constructs a new MultiKeyMap that decorates a HashedMap.
MultiKeyMap(org.apache.commons.collections.map.AbstractHashedMap) - constructor for class org.apache.commons.collections.map.MultiKeyMap
Constructor that decorates the specified map and is called from decorate(AbstractHashedMap).
MultiMap - interface org.apache.commons.collections.MultiMap
Defines a map that holds a collection of values against each key.
AbstractMapBag.MutableInteger - class org.apache.commons.collections.bag.AbstractMapBag.MutableInteger
Mutable integer class for storing the data.
mutator - field in class org.apache.commons.collections.collection.CompositeCollection
CollectionMutator to handle changes to the collection
BeanMap.MyMapEntry - class org.apache.commons.collections.BeanMap.MyMapEntry
Map entry used by BeanMap.
MyMapEntry(org.apache.commons.collections.BeanMap,Object,Object) - constructor for class org.apache.commons.collections.BeanMap.MyMapEntry
Constructs a new MyMapEntry.

N

NATURAL_COMPARATOR - static field in class org.apache.commons.collections.ComparatorUtils
Comparator for natural sort order.
naturalComparator() - static method in class org.apache.commons.collections.ComparatorUtils
Gets a comparator that uses the natural order of the objects.
Create a new Predicate that returns true if neither of the specified predicates are true.
next - field in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
The next entry in the hash chain
next - field in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
The next entry
next - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
The node that will be returned by next().
next - field in class org.apache.commons.collections.list.AbstractLinkedList.Node
A pointer to the node after this node
next - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
The next entry
next() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
next() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
next() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
next() - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySetIterator
next() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashMapIterator
next() - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySetIterator
next() - method in class org.apache.commons.collections.map.AbstractHashedMap.ValuesIterator
next() - method in class org.apache.commons.collections.iterators.AbstractIteratorDecorator
next() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
next() - method in class org.apache.commons.collections.map.AbstractLinkedMap.EntrySetIterator
next() - method in class org.apache.commons.collections.map.AbstractLinkedMap.KeySetIterator
next() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
next() - method in class org.apache.commons.collections.map.AbstractLinkedMap.ValuesIterator
next() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
next() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Gets the next entry in the bucket.
next() - method in class org.apache.commons.collections.iterators.ArrayIterator
Returns the next element in the array.
next() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Gets the next element from the array.
next() - method in class org.apache.commons.collections.iterators.CollatingIterator
Returns the next ordered element from a child iterator.
next() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
next() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.iterators.EnumerationIterator
Returns the next object from the enumeration.
next() - method in class org.apache.commons.collections.iterators.FilterIterator
Returns the next object that matches the predicate.
next() - method in class org.apache.commons.collections.iterators.FilterListIterator
next() - method in class org.apache.commons.collections.iterators.IteratorChain
Returns the next Object of the current Iterator
next() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns the next element from the iterator.
next() - method in class org.apache.commons.collections.iterators.LoopingIterator
Returns the next object in the collection.
next() - method in class org.apache.commons.collections.MapIterator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Returns the next element in the array.
next() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Gets the next element from the array.
next() - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Gets the next element of the iteration.
next() - method in class org.apache.commons.collections.iterators.ProxyIterator
Returns the next element from the underlying iterator.
next() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.next() method.
next() - method in class org.apache.commons.collections.iterators.SingletonIterator
Get the next object from the iterator.
next() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Get the next object from the iterator.
next() - method in class org.apache.commons.collections.iterators.TransformIterator
Gets the next object from the iteration, transforming it using the current transformer.
next() - method in class org.apache.commons.collections.iterators.UnmodifiableIterator
next() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
next() - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Gets the next key from the Map.
next() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
nextElement() - method in class org.apache.commons.collections.iterators.IteratorEnumeration
Returns the next element from the underlying iterator.
nextEntry() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
nextEntry() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
nextIndex - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
The index of next.
nextIndex() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
nextIndex() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
nextIndex() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
nextIndex() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Gets the next index to be retrieved.
nextIndex() - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
nextIndex() - method in class org.apache.commons.collections.list.CursorableLinkedList.Cursor
Gets the index of the next element to be returned.
nextIndex() - method in class org.apache.commons.collections.iterators.FilterListIterator
nextIndex() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns in the index of the next element.
nextIndex() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Gets the next index to be retrieved.
nextIndex() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.nextIndex() method.
nextIndex() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Returns the index of the element that would be returned by a subsequent call to next.
nextIndex() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
nextKey(Object) - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets the next key in sequence.
nextKey(Object) - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
nextKey(Object) - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
nextKey(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
nextKey(Object) - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the next key to the one specified using insert order.
nextKey(Object) - method in class org.apache.commons.collections.OrderedMap
Gets the next key after the one specified.
nextKey(Object) - method in class org.apache.commons.collections.map.SingletonMap
Gets the next key after the key specified, always null.
nextKey(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the next key after the one specified.
NO_ARG_INSTANCE - static field in class org.apache.commons.collections.functors.InstantiateTransformer
Singleton instance that uses the no arg constructor
NO_NEXT_ENTRY - static field in class org.apache.commons.collections.map.AbstractHashedMap
NO_PREVIOUS_ENTRY - static field in class org.apache.commons.collections.map.AbstractHashedMap
AbstractLinkedList.Node - class org.apache.commons.collections.list.AbstractLinkedList.Node
A node within the linked list.
Node() - constructor for class org.apache.commons.collections.list.AbstractLinkedList.Node
Constructs a new header node.
Node(Object) - constructor for class org.apache.commons.collections.list.AbstractLinkedList.Node
Constructs a new node.
Constructs a new node.
NodeCachingLinkedList - class org.apache.commons.collections.list.NodeCachingLinkedList
A List implementation that stores a cache of internal Node objects in an effort to reduce wasteful object creation.
NodeCachingLinkedList() - constructor for class org.apache.commons.collections.list.NodeCachingLinkedList
Constructor that creates.
NodeCachingLinkedList(Collection) - constructor for class org.apache.commons.collections.list.NodeCachingLinkedList
Constructor that copies the specified collection
NodeCachingLinkedList(int) - constructor for class org.apache.commons.collections.list.NodeCachingLinkedList
Constructor that species the maximum cache size.
Handle event from the list when a node has changed.
Handle event from the list when a node has been added.
Handle event from the list when a node has been removed.
NonePredicate - class org.apache.commons.collections.functors.NonePredicate
Predicate implementation that returns true if none of the predicates return true.
nonePredicate(Collection) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if none of the specified predicates are true.
NonePredicate(org.apache.commons.collections.Predicate[]) - constructor for class org.apache.commons.collections.functors.NonePredicate
Constructor that performs no validation.
nonePredicate(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if none of the specified predicates are true.
NOPClosure - class org.apache.commons.collections.functors.NOPClosure
Closure implementation that does nothing.
nopClosure() - static method in class org.apache.commons.collections.ClosureUtils
Gets a Closure that will do nothing.
NOPTransformer - class org.apache.commons.collections.functors.NOPTransformer
Transformer implementation that does nothing.
nopTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a transformer that returns the input object.
NotNullPredicate - class org.apache.commons.collections.functors.NotNullPredicate
Predicate implementation that returns true if the input is not null.
notNullPredicate() - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that checks if the input object passed in is not null.
NotPredicate - class org.apache.commons.collections.functors.NotPredicate
Predicate implementation that returns the opposite of the decorated predicate.
NotPredicate(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.functors.NotPredicate
Constructor that performs no validation.
notPredicate(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if the specified predicate returns false and vice versa.
NULL - static field in class org.apache.commons.collections.map.AbstractHashedMap
An object for masking null
NULL_ARGUMENTS - static field in class org.apache.commons.collections.BeanMap
An empty array.
NULL_INSTANCE - static field in class org.apache.commons.collections.functors.ConstantFactory
Returns null each time
NULL_INSTANCE - static field in class org.apache.commons.collections.functors.ConstantTransformer
Returns null each time
NullComparator - class org.apache.commons.collections.comparators.NullComparator
A Comparator that will compare nulls to be either lower or higher than other objects.
NullComparator() - constructor for class org.apache.commons.collections.comparators.NullComparator
Construct an instance that sorts null higher than any non-null object it is compared with.
NullComparator(boolean) - constructor for class org.apache.commons.collections.comparators.NullComparator
Construct an instance that sorts null higher or lower than any non-null object it is compared with.
NullComparator(Comparator) - constructor for class org.apache.commons.collections.comparators.NullComparator
Construct an instance that sorts null higher than any non-null object it is compared with.
NullComparator(Comparator,boolean) - constructor for class org.apache.commons.collections.comparators.NullComparator
Construct an instance that sorts null higher or lower than any non-null object it is compared with.
nullFactory() - static method in class org.apache.commons.collections.FactoryUtils
Gets a Factory that will return null each time the factory is used.
nullHighComparator(Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a Comparator that controls the comparison of null values.
NullIsExceptionPredicate - class org.apache.commons.collections.functors.NullIsExceptionPredicate
Predicate implementation that throws an exception if the input is null.
NullIsExceptionPredicate(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.functors.NullIsExceptionPredicate
Constructor that performs no validation.
nullIsExceptionPredicate(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that throws an exception if the input object is null, otherwise it calls the specified Predicate.
NullIsFalsePredicate - class org.apache.commons.collections.functors.NullIsFalsePredicate
Predicate implementation that returns false if the input is null.
NullIsFalsePredicate(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.functors.NullIsFalsePredicate
Constructor that performs no validation.
nullIsFalsePredicate(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that returns false if the input object is null, otherwise it calls the specified Predicate.
NullIsTruePredicate - class org.apache.commons.collections.functors.NullIsTruePredicate
Predicate implementation that returns true if the input is null.
NullIsTruePredicate(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.functors.NullIsTruePredicate
Constructor that performs no validation.
nullIsTruePredicate(org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that returns true if the input object is null, otherwise it calls the specified Predicate.
nullLowComparator(Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a Comparator that controls the comparison of null values.
NullPredicate - class org.apache.commons.collections.functors.NullPredicate
Predicate implementation that returns true if the input is null.
nullPredicate() - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that checks if the input object passed in is null.
nullTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a transformer that always returns null.

O

ObjectArrayIterator - class org.apache.commons.collections.iterators.ObjectArrayIterator
An Iterator over an array of objects.
ObjectArrayIterator() - constructor for class org.apache.commons.collections.iterators.ObjectArrayIterator
Constructor for use with setArray.
ObjectArrayIterator(array[],int) - constructor for class org.apache.commons.collections.iterators.ObjectArrayIterator
Constructs an ObjectArrayIterator that will iterate over the values in the specified array from a specific start index.
ObjectArrayIterator(array[],int,int) - constructor for class org.apache.commons.collections.iterators.ObjectArrayIterator
Construct an ObjectArrayIterator that will iterate over a range of values in the specified array.
ObjectArrayIterator(Object[]) - constructor for class org.apache.commons.collections.iterators.ObjectArrayIterator
Constructs an ObjectArrayIterator that will iterate over the values in the specified array.
ObjectArrayListIterator - class org.apache.commons.collections.iterators.ObjectArrayListIterator
Implements a ListIterator over an array of objects.
ObjectArrayListIterator() - constructor for class org.apache.commons.collections.iterators.ObjectArrayListIterator
Constructor for use with setArray.
ObjectArrayListIterator(Object[]) - constructor for class org.apache.commons.collections.iterators.ObjectArrayListIterator
Constructs an ObjectArrayListIterator that will iterate over the values in the specified array.
ObjectArrayListIterator(Object[],int) - constructor for class org.apache.commons.collections.iterators.ObjectArrayListIterator
Constructs an ObjectArrayListIterator that will iterate over the values in the specified array from a specific start index.
ObjectArrayListIterator(Object[],int,int) - constructor for class org.apache.commons.collections.iterators.ObjectArrayListIterator
Construct an ObjectArrayListIterator that will iterate over a range of values in the specified array.
ObjectGraphIterator - class org.apache.commons.collections.iterators.ObjectGraphIterator
An Iterator that can traverse multiple iterators down an object graph.
ObjectGraphIterator(Iterator) - constructor for class org.apache.commons.collections.iterators.ObjectGraphIterator
Constructs a ObjectGraphIterator that will handle an iterator of iterators.
objectGraphIterator(Object,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that operates over an object graph.
ObjectGraphIterator(Object,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.iterators.ObjectGraphIterator
Constructs an ObjectGraphIterator using a root object and transformer.
OnePredicate - class org.apache.commons.collections.functors.OnePredicate
Predicate implementation that returns true if only one of the predicates return true.
onePredicate(Collection) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if only one of the specified predicates are true.
OnePredicate(org.apache.commons.collections.Predicate[]) - constructor for class org.apache.commons.collections.functors.OnePredicate
Constructor that performs no validation.
onePredicate(org.apache.commons.collections.Predicate[]) - static method in class org.apache.commons.collections.PredicateUtils
Create a new Predicate that returns true if only one of the specified predicates are true.
OrderedBidiMap - interface org.apache.commons.collections.OrderedBidiMap
Defines a map that allows bidirectional lookup between key and values and retains and provides access to an ordering.
OrderedIterator - interface org.apache.commons.collections.OrderedIterator
Defines an iterator that operates over a ordered collections.
OrderedMap - interface org.apache.commons.collections.OrderedMap
Defines a map that maintains order and allows both forward and backward iteration through that order.
orderedMap(Map) - static method in class org.apache.commons.collections.MapUtils
Returns a map that maintains the order of keys that are added backed by the given map.
OrderedMapIterator - interface org.apache.commons.collections.OrderedMapIterator
Defines an iterator that operates over an ordered Map.
orderedMapIterator() - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets a bidirectional iterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
orderedMapIterator() - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
orderedMapIterator() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
Obtains an ordered map iterator.
orderedMapIterator() - method in class org.apache.commons.collections.map.ListOrderedMap
Obtains an OrderedMapIterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.OrderedMap
Obtains an OrderedMapIterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.map.SingletonMap
Obtains an OrderedMapIterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets an ordered iterator over the map entries.
orderedMapIterator() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Obtains an OrderedMapIterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
Obtains an OrderedMapIterator over the map.
orderedMapIterator() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
Obtains an OrderedMapIterator over the map.
orderedSet(Set) - static method in class org.apache.commons.collections.SetUtils
Returns a set that maintains the order of elements that are added backed by the given set.
orderingBits - field in class org.apache.commons.collections.comparators.ComparatorChain
Order - false (clear) = ascend; true (set) = descend.
This package contains the interfaces and utilities shared across all the subpackages of this component.
This package contains implementations of the Bag and SortedBag interfaces.
This package contains implementations of the BidiMap, OrderedBidiMap and SortedBidiMap interfaces.
This package contains implementations of the Buffer interface.
This package contains implementations of the Collection interface.
This package contains implementations of the Comparator interface.
This package contains implementations of the Closure, Predicate, Transformer and Factory interfaces.
This package contains implementations of the Iterator interface.
This package contains implementations of collection and map related key/value classes.
This package contains implementations of the List interface.
This package contains implementations of the Map, IterableMap, OrderedMap and SortedMap interfaces.
This package contains implementations of the Set and SortedSet interfaces.
OrPredicate - class org.apache.commons.collections.functors.OrPredicate
Predicate implementation that returns true if either of the predicates return true.
Constructor that performs no validation.
Create a new Predicate that returns true if either of the specified predicates are true.

P

parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
The parent map
parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
The parent map
parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
The parent map
parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.MapEntry
The parent map
parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
The parent map
parent - field in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.View
The parent map
parent - field in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
The parent map
parent - field in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
The parent map
parent - field in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
The parent map
parent - field in class org.apache.commons.collections.map.AbstractHashedMap.Values
The parent map
parent - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
The parent list
parent - field in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
The parent map
parent - field in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
The parent map
parent - field in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
The parent map
peek() - method in class org.apache.commons.collections.ArrayStack
Returns the top item off of this stack without removing it.
peek() - method in class org.apache.commons.collections.BinaryHeap
Returns the element on top of heap but don't remove it.
peek() - method in class org.apache.commons.collections.PriorityQueue
Return element on top of heap but don't remove it.
peek() - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Return element on top of heap but don't remove it.
peek(int) - method in class org.apache.commons.collections.ArrayStack
Returns the n'th item down (zero-relative) from the top of this stack without removing it.
percolateDownMaxHeap(int) - method in class org.apache.commons.collections.BinaryHeap
Percolates element down heap from the position given by the index.
percolateDownMaxHeap(int) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates element down heap from the position given by the index.
percolateDownMinHeap(int) - method in class org.apache.commons.collections.BinaryHeap
Percolates element down heap from the position given by the index.
percolateDownMinHeap(int) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates element down heap from the position given by the index.
percolateUpMaxHeap(int) - method in class org.apache.commons.collections.BinaryHeap
Percolates element up heap from from the position given by the index.
percolateUpMaxHeap(int) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates element up heap from from the position given by the index.
percolateUpMaxHeap(Object) - method in class org.apache.commons.collections.BinaryHeap
Percolates a new element up heap from the bottom.
percolateUpMaxHeap(Object) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates a new element up heap from the bottom.
percolateUpMinHeap(int) - method in class org.apache.commons.collections.BinaryHeap
Percolates element up heap from the position given by the index.
percolateUpMinHeap(int) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates element up heap from the position given by the index.
percolateUpMinHeap(Object) - method in class org.apache.commons.collections.BinaryHeap
Percolates a new element up heap from the bottom.
percolateUpMinHeap(Object) - method in class org.apache.commons.collections.buffer.PriorityBuffer
Percolates a new element up heap from the bottom.
pop() - method in class org.apache.commons.collections.ArrayStack
Pops the top item off of this stack and return it.
pop() - method in class org.apache.commons.collections.BinaryHeap
Returns the element on top of heap and remove it.
pop() - method in class org.apache.commons.collections.PriorityQueue
Return element on top of heap and remove it.
pop() - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Return element on top of heap and remove it.
Predicate - interface org.apache.commons.collections.Predicate
Defines a functor interface implemented by classes that perform a predicate test on an object.
predicate - field in class org.apache.commons.collections.collection.PredicatedCollection
The predicate to use
PredicatedBag - class org.apache.commons.collections.bag.PredicatedBag
Decorates another Bag to validate that additions match a specified predicate.
Returns a predicated (validating) bag backed by the given bag.
Constructor that wraps (not copies).
PredicatedBuffer - class org.apache.commons.collections.buffer.PredicatedBuffer
Decorates another Buffer to validate that additions match a specified predicate.
Returns a predicated (validating) buffer backed by the given buffer.
Constructor that wraps (not copies).
PredicatedCollection - class org.apache.commons.collections.collection.PredicatedCollection
Decorates another Collection to validate that additions match a specified predicate.
Returns a predicated (validating) collection backed by the given collection.
PredicatedCollection(Collection,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.collection.PredicatedCollection
Constructor that wraps (not copies).
PredicateDecorator - interface org.apache.commons.collections.functors.PredicateDecorator
Defines a predicate that decorates one or more other predicates.
PredicatedList - class org.apache.commons.collections.list.PredicatedList
Decorates another List to validate that all additions match a specified predicate.
predicatedList(List,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.ListUtils
Returns a predicated (validating) list backed by the given list.
PredicatedList(List,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.list.PredicatedList
Constructor that wraps (not copies).
Inner class Iterator for the PredicatedList
PredicatedListIterator(ListIterator) - constructor for class org.apache.commons.collections.list.PredicatedList.PredicatedListIterator
Constructor that decorates the specified iterator.
PredicatedMap - class org.apache.commons.collections.map.PredicatedMap
Decorates another Map to validate that additions match a specified predicate.
Returns a predicated (validating) map backed by the given map.
Constructor that wraps (not copies).
PredicatedSet - class org.apache.commons.collections.set.PredicatedSet
Decorates another Set to validate that all additions match a specified predicate.
PredicatedSet(Set,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.set.PredicatedSet
Constructor that wraps (not copies).
predicatedSet(Set,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.SetUtils
Returns a predicated (validating) set backed by the given set.
PredicatedSortedBag - class org.apache.commons.collections.bag.PredicatedSortedBag
Decorates another SortedBag to validate that additions match a specified predicate.
Returns a predicated (validating) sorted bag backed by the given sorted bag.
Constructor that wraps (not copies).
PredicatedSortedMap - class org.apache.commons.collections.map.PredicatedSortedMap
Decorates another SortedMap to validate that additions match a specified predicate.
Returns a predicated (validating) sorted map backed by the given map.
Constructor that wraps (not copies).
PredicatedSortedSet - class org.apache.commons.collections.set.PredicatedSortedSet
Decorates another SortedSet to validate that all additions match a specified predicate.
PredicatedSortedSet(SortedSet,org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.set.PredicatedSortedSet
Constructor that wraps (not copies).
predicatedSortedSet(SortedSet,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.SetUtils
Returns a predicated (validating) sorted set backed by the given sorted set.
PredicateTransformer - class org.apache.commons.collections.functors.PredicateTransformer
Transformer implementation that calls a Predicate using the input object and then returns the input.
PredicateTransformer(org.apache.commons.collections.Predicate) - constructor for class org.apache.commons.collections.functors.PredicateTransformer
Constructor that performs no validation.
PredicateUtils - class org.apache.commons.collections.PredicateUtils
PredicateUtils provides reference implementations and utilities for the Predicate functor interface.
PredicateUtils() - constructor for class org.apache.commons.collections.PredicateUtils
This class is not normally instantiated.
previous - field in class org.apache.commons.collections.list.AbstractLinkedList.Node
A pointer to the node before this node
previous() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
previous() - method in class org.apache.commons.collections.map.AbstractLinkedMap.EntrySetIterator
previous() - method in class org.apache.commons.collections.map.AbstractLinkedMap.KeySetIterator
previous() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
previous() - method in class org.apache.commons.collections.map.AbstractLinkedMap.ValuesIterator
previous() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
previous() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Gets the previous key from the Map.
previous() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Gets the previous element from the array.
previous() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
Gets the previous key from the Map.
previous() - method in class org.apache.commons.collections.iterators.FilterListIterator
previous() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns the the previous element.
previous() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Gets the previous element from the array.
previous() - method in class org.apache.commons.collections.OrderedIterator
Gets the previous element from the collection.
previous() - method in class org.apache.commons.collections.OrderedMapIterator
Gets the previous key from the Map.
previous() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.previous() method.
previous() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Get the previous object from the iterator.
previous() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
previous() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
Gets the previous key from the Map.
previousEntry() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
previousIndex() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
previousIndex() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
previousIndex() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Gets the index of the item to be retrieved if previous() is called.
previousIndex() - method in class org.apache.commons.collections.CursorableLinkedList.Cursor
previousIndex() - method in class org.apache.commons.collections.iterators.FilterListIterator
previousIndex() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Returns the index of the previous element.
previousIndex() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Gets the index of the item to be retrieved if previous() is called.
previousIndex() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.previousIndex() method.
previousIndex() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Returns the index of the element that would be returned by a subsequent call to previous.
previousIndex() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
previousKey(Object) - method in class org.apache.commons.collections.map.AbstractLinkedMap
Gets the previous key in sequence.
previousKey(Object) - method in class org.apache.commons.collections.bidimap.AbstractOrderedBidiMapDecorator
previousKey(Object) - method in class org.apache.commons.collections.map.AbstractOrderedMapDecorator
previousKey(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
previousKey(Object) - method in class org.apache.commons.collections.map.ListOrderedMap
Gets the previous key to the one specified using insert order.
previousKey(Object) - method in class org.apache.commons.collections.OrderedMap
Gets the previous key before the one specified.
previousKey(Object) - method in class org.apache.commons.collections.map.SingletonMap
Gets the previous key before the key specified, always null.
previousKey(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Gets the previous key before the one specified.
printStackTrace() - method in class org.apache.commons.collections.FunctorException
Prints the stack trace of this exception to the standard error stream.
printStackTrace(PrintStream) - method in class org.apache.commons.collections.FunctorException
Prints the stack trace of this exception to the specified stream.
printStackTrace(PrintWriter) - method in class org.apache.commons.collections.FunctorException
Prints the stack trace of this exception to the specified writer.
PriorityBuffer - class org.apache.commons.collections.buffer.PriorityBuffer
Binary heap implementation of Buffer that provides for removal based on Comparator ordering.
PriorityBuffer() - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that sorts in ascending order by the natural order of the objects added.
PriorityBuffer(boolean) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer specifying the sort order and using the natural order of the objects added.
PriorityBuffer(boolean,Comparator) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer specifying the sort order and comparator.
PriorityBuffer(Comparator) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that sorts in ascending order using the specified comparator.
PriorityBuffer(int) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that sorts in ascending order by the natural order of the objects added, specifying an initial capacity.
PriorityBuffer(int,boolean) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that specifying initial capacity and sort order, using the natural order of the objects added.
PriorityBuffer(int,boolean,Comparator) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that specifying initial capacity, sort order and comparator.
PriorityBuffer(int,Comparator) - constructor for class org.apache.commons.collections.buffer.PriorityBuffer
Constructs a new empty buffer that sorts in ascending order using the specified comparator and initial capacity.
PriorityQueue - interface org.apache.commons.collections.PriorityQueue
Defines a collection for priority queues, which can insert, peek and pop.
processRemovedLRU(Object,Object) - method in class org.apache.commons.collections.LRUMap
Subclasses of LRUMap may hook into this method to provide specialized actions whenever an Object is automatically removed from the cache.
PrototypeFactory - class org.apache.commons.collections.functors.PrototypeFactory
Factory implementation that creates a new instance each time based on a prototype.
prototypeFactory(Object) - static method in class org.apache.commons.collections.FactoryUtils
Creates a Factory that will return a clone of the same prototype object each time the factory is used.
ProxyIterator - class org.apache.commons.collections.iterators.ProxyIterator
A Proxy Iterator which delegates its methods to a proxy instance.
ProxyIterator() - constructor for class org.apache.commons.collections.iterators.ProxyIterator
Constructs a new ProxyIterator that will not function until setIterator(Iterator) is called.
ProxyIterator(Iterator) - constructor for class org.apache.commons.collections.iterators.ProxyIterator
Constructs a new ProxyIterator that will use the given iterator.
ProxyListIterator - class org.apache.commons.collections.iterators.ProxyListIterator
A proxy ListIterator which delegates its methods to a proxy instance.
ProxyListIterator() - constructor for class org.apache.commons.collections.iterators.ProxyListIterator
Constructs a new ProxyListIterator that will not function until setListIterator is invoked.
ProxyListIterator(ListIterator) - constructor for class org.apache.commons.collections.iterators.ProxyListIterator
Constructs a new ProxyListIterator that will use the given list iterator.
ProxyMap - class org.apache.commons.collections.ProxyMap
This Map wraps another Map implementation, using the wrapped instance for its default implementation.
ProxyMap(Map) - constructor for class org.apache.commons.collections.ProxyMap
Constructor that uses the specified map to delegate to.
purge() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Purges stale mappings from this map.
purge(Reference) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Purges the specified reference.
purgeBeforeRead() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Purges stale mappings from this map before read operations.
purgeBeforeWrite() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Purges stale mappings from this map before write operations.
purgeValues - field in class org.apache.commons.collections.map.AbstractReferenceMap
Should the value be automatically purged when the associated key has been collected?
push(Object) - method in class org.apache.commons.collections.ArrayStack
Pushes a new item onto the top of this stack.
put(Object,Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Puts the key-value pair into the map, replacing any previous pair.
put(Object,Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Puts a key-value mapping into this map.
put(Object,Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
put(Object,Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Puts a key-value mapping into this map.
put(Object,Object) - method in class org.apache.commons.collections.BeanMap
Sets the bean property with the given name to the given value.
put(Object,Object) - method in class org.apache.commons.collections.BidiMap
Puts the key-value pair into the map, replacing any previous pair.
put(Object,Object) - method in class org.apache.commons.collections.map.CompositeMap
Associates the specified value with the specified key in this map (optional operation).
put(Object,Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Associates the specified value with the specified key in this map.
put(Object,Object) - method in class org.apache.commons.collections.FastHashMap
Associate the specified value with the specified key in this map.
put(Object,Object) - method in class org.apache.commons.collections.FastTreeMap
Associate the specified value with the specified key in this map.
put(Object,Object) - method in class org.apache.commons.collections.map.FixedSizeMap
put(Object,Object) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
put(Object,Object) - method in class org.apache.commons.collections.map.Flat3Map
Puts a key-value mapping into this map.
put(Object,Object) - method in class org.apache.commons.collections.map.ListOrderedMap
put(Object,Object) - method in class org.apache.commons.collections.LRUMap
Removes the key and its Object from the Map.
put(Object,Object) - method in class org.apache.commons.collections.MultiHashMap
Adds the value to the collection associated with the specified key.
put(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Puts the key and value into the map, where the key must be a non-null MultiKey object.
put(Object,Object) - method in class org.apache.commons.collections.MultiMap
Adds the value to the collection associated with the specified key.
put(Object,Object) - method in class org.apache.commons.collections.map.PredicatedMap
put(Object,Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.put(Object,Object) method.
put(Object,Object) - method in class org.apache.commons.collections.ReferenceMap
Associates the given key with the given value.
put(Object,Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.put(Object, Object).
put(Object,Object) - method in class org.apache.commons.collections.map.SingletonMap
Puts a key-value mapping into this map where the key must match the existing key.
put(Object,Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.put(Object, Object).
put(Object,Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Puts a new key value mapping into the map.
put(Object,Object) - method in class org.apache.commons.collections.map.TransformedMap
put(Object,Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Puts the key-value pair into the map, replacing any previous pair.
put(Object,Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
put(Object,Object) - method in class org.apache.commons.collections.map.UnmodifiableMap
put(Object,Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Puts the key-value pair into the map, replacing any previous pair.
put(Object,Object) - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
put(Object,Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
put(Object,Object) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
put(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Stores the value against the specified multi-key.
put(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Stores the value against the specified multi-key.
put(Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Stores the value against the specified multi-key.
put(Object,Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Stores the value against the specified multi-key.
Called when the CompositeMap.put() method is invoked.
putAll(Map) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
putAll(Map) - method in class org.apache.commons.collections.map.AbstractHashedMap
Puts all the values from the specified map into this map.
putAll(Map) - method in class org.apache.commons.collections.map.AbstractMapDecorator
putAll(Map) - method in class org.apache.commons.collections.map.CompositeMap
Copies all of the mappings from the specified map to this map (optional operation).
putAll(Map) - method in class org.apache.commons.collections.FastHashMap
Copy all of the mappings from the specified map to this one, replacing any mappings with the same keys.
putAll(Map) - method in class org.apache.commons.collections.FastTreeMap
Copy all of the mappings from the specified map to this one, replacing any mappings with the same keys.
putAll(Map) - method in class org.apache.commons.collections.map.FixedSizeMap
putAll(Map) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
putAll(Map) - method in class org.apache.commons.collections.map.Flat3Map
Puts all the values from the specified map into this map.
putAll(Map) - method in class org.apache.commons.collections.map.ListOrderedMap
putAll(Map) - method in class org.apache.commons.collections.map.MultiKeyMap
Puts all the keys and values into this map.
putAll(Map) - method in class org.apache.commons.collections.map.PredicatedMap
putAll(Map) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.putAll(Map) method.
putAll(Map) - method in class org.apache.commons.collections.SequencedHashMap
Adds all the mappings in the specified map to this map, replacing any mappings that already exist (as per Map.putAll(Map)).
putAll(Map) - method in class org.apache.commons.collections.map.SingletonMap
Puts the values from the specified map into this map.
putAll(Map) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.putAll(Map).
putAll(Map) - method in class org.apache.commons.collections.map.StaticBucketMap
Puts all the entries from the specified map into this map.
putAll(Map) - method in class org.apache.commons.collections.map.TransformedMap
putAll(Map) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Puts all the mappings from the specified map into this map.
putAll(Map) - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
putAll(Map) - method in class org.apache.commons.collections.map.UnmodifiableMap
putAll(Map) - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
putAll(Map) - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
putAll(Map) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
putAll(Map) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
putAll(Object,Collection) - method in class org.apache.commons.collections.MultiHashMap
Adds a collection of values to the collection associated with the specified key.
Called when the CompositeMap.putAll() method is invoked.
putAllWriteable(org.apache.commons.collections.BeanMap) - method in class org.apache.commons.collections.BeanMap
Puts all of the writable properties from the given BeanMap into this BeanMap.

R

rangeCheck(int,int) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
readExternal(ObjectInput) - method in class org.apache.commons.collections.LRUMap
Deserializes this map from the given stream.
readExternal(ObjectInput) - method in class org.apache.commons.collections.SequencedHashMap
Deserializes this map from the given stream.
A MapEntry implementation for the map.
Creates a new entry object for the ReferenceMap.
ReferenceIdentityMap - class org.apache.commons.collections.map.ReferenceIdentityMap
A Map implementation that allows mappings to be removed by the garbage collector and matches keys and values based on == not equals().
ReferenceIdentityMap() - constructor for class org.apache.commons.collections.map.ReferenceIdentityMap
Constructs a new ReferenceIdentityMap that will use hard references to keys and soft references to values.
ReferenceIdentityMap(int,int) - constructor for class org.apache.commons.collections.map.ReferenceIdentityMap
Constructs a new ReferenceIdentityMap that will use the specified types of references.
ReferenceIdentityMap(int,int,boolean) - constructor for class org.apache.commons.collections.map.ReferenceIdentityMap
Constructs a new ReferenceIdentityMap that will use the specified types of references.
ReferenceIdentityMap(int,int,int,float) - constructor for class org.apache.commons.collections.map.ReferenceIdentityMap
Constructs a new ReferenceIdentityMap with the specified reference types, load factor and initial capacity.
ReferenceIdentityMap(int,int,int,float,boolean) - constructor for class org.apache.commons.collections.map.ReferenceIdentityMap
Constructs a new ReferenceIdentityMap with the specified reference types, load factor and initial capacity.
ReferenceMap - class org.apache.commons.collections.ReferenceMap
Hash-based Map implementation that allows mappings to be removed by the garbage collector.
ReferenceMap - class org.apache.commons.collections.map.ReferenceMap
A Map implementation that allows mappings to be removed by the garbage collector.
ReferenceMap() - constructor for class org.apache.commons.collections.ReferenceMap
Constructs a new ReferenceMap that will use hard references to keys and soft references to values.
ReferenceMap() - constructor for class org.apache.commons.collections.map.ReferenceMap
Constructs a new ReferenceMap that will use hard references to keys and soft references to values.
ReferenceMap(int,int) - constructor for class org.apache.commons.collections.ReferenceMap
Constructs a new ReferenceMap that will use the specified types of references.
ReferenceMap(int,int) - constructor for class org.apache.commons.collections.map.ReferenceMap
Constructs a new ReferenceMap that will use the specified types of references.
ReferenceMap(int,int,boolean) - constructor for class org.apache.commons.collections.ReferenceMap
Constructs a new ReferenceMap that will use the specified types of references.
ReferenceMap(int,int,boolean) - constructor for class org.apache.commons.collections.map.ReferenceMap
Constructs a new ReferenceMap that will use the specified types of references.
ReferenceMap(int,int,int,float) - constructor for class org.apache.commons.collections.ReferenceMap
Constructs a new ReferenceMap with the specified reference types, load factor and initial capacity.
ReferenceMap(int,int,int,float) - constructor for class org.apache.commons.collections.map.ReferenceMap
Constructs a new ReferenceMap with the specified reference types, load factor and initial capacity.
ReferenceMap(int,int,int,float,boolean) - constructor for class org.apache.commons.collections.ReferenceMap
Constructs a new ReferenceMap with the specified reference types, load factor and initial capacity.
ReferenceMap(int,int,int,float,boolean) - constructor for class org.apache.commons.collections.map.ReferenceMap
Constructs a new ReferenceMap with the specified reference types, load factor and initial capacity.
Registers a CursorableLinkedList.Cursor to be notified of changes to this list.
Registers a cursor to be notified of changes to this list.
reinitialise() - method in class org.apache.commons.collections.BeanMap
Reinitializes this bean.
remove() - method in class org.apache.commons.collections.buffer.AbstractBufferDecorator
remove() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Removes the last returned key from the underlying Map (optional operation).
remove() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySetIterator
remove() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySetIterator
remove() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
remove() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
remove() - method in class org.apache.commons.collections.iterators.AbstractIteratorDecorator
remove() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
remove() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
remove() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
remove() - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
remove() - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Removes the last returned key from the underlying Map (optional operation).
remove() - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Removes the last returned key from the underlying Map (optional operation).
remove() - method in class org.apache.commons.collections.iterators.ArrayIterator
Throws UnsupportedOperationException.
remove() - method in class org.apache.commons.collections.ArrayStack
Removes the element on the top of the stack.
remove() - method in class org.apache.commons.collections.BinaryHeap
Removes the priority element.
remove() - method in class org.apache.commons.collections.buffer.BlockingBuffer
remove() - method in class org.apache.commons.collections.BoundedFifoBuffer
Removes the least recently inserted element from this buffer.
remove() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Removes the least recently inserted element from this buffer.
remove() - method in class org.apache.commons.collections.Buffer
Gets and removes the next object from the buffer.
remove() - method in class org.apache.commons.collections.iterators.CollatingIterator
Removes the last returned element from the child iterator that produced it.
remove() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
remove() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Removes the last returned key from the underlying Map.
remove() - method in class org.apache.commons.collections.iterators.EnumerationIterator
Removes the last retrieved element if a collection is attached.
remove() - method in class org.apache.commons.collections.iterators.FilterIterator
Removes from the underlying collection of the base iterator the last element returned by this iterator.
remove() - method in class org.apache.commons.collections.iterators.FilterListIterator
Not supported.
remove() - method in class org.apache.commons.collections.iterators.IteratorChain
Removes from the underlying collection the last element returned by the Iterator.
remove() - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Throws UnsupportedOperationException.
remove() - method in class org.apache.commons.collections.iterators.LoopingIterator
Removes the previously retrieved item from the underlying collection.
remove() - method in class org.apache.commons.collections.MapIterator
Removes the last returned key from the underlying Map (optional operation).
remove() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Throws UnsupportedOperationException.
remove() - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Removes from the underlying collection the last element returned.
remove() - method in class org.apache.commons.collections.buffer.PredicatedBuffer
Gets and removes the next object from the buffer.
remove() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Gets and removes the next element (pop).
remove() - method in class org.apache.commons.collections.iterators.ProxyIterator
Removes the last returned element from the collection that spawned the underlying iterator.
remove() - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.remove() method.
remove() - method in class org.apache.commons.collections.iterators.SingletonIterator
Remove the object from this iterator.
remove() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Remove the object from this iterator.
remove() - method in class org.apache.commons.collections.buffer.SynchronizedBuffer
Gets and removes the next object from the buffer.
remove() - method in class org.apache.commons.collections.buffer.TransformedBuffer
remove() - method in class org.apache.commons.collections.iterators.TransformIterator
remove() - method in class org.apache.commons.collections.UnboundedFifoBuffer
Removes the next object from the buffer
remove() - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Removes the next object from the buffer
remove() - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
Gets and removes the next object from the buffer.
remove() - method in class org.apache.commons.collections.iterators.UnmodifiableIterator
remove() - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
remove() - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Removes the last returned key from the underlying Map (optional operation).
remove() - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
remove(int) - method in class org.apache.commons.collections.list.AbstractLinkedList
remove(int) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
remove(int) - method in class org.apache.commons.collections.list.AbstractListDecorator
remove(int) - method in class org.apache.commons.collections.CursorableLinkedList
Removes the element at the specified position in this list (optional operation).
remove(int) - method in class org.apache.commons.collections.FastArrayList
Remove the element at the specified position in the list, and shift any subsequent elements down one position.
remove(int) - method in class org.apache.commons.collections.list.FixedSizeList
remove(int) - method in class org.apache.commons.collections.map.LinkedMap
Removes the element at the specified index.
remove(int) - method in class org.apache.commons.collections.map.ListOrderedMap
Removes the element at the specified index.
remove(int) - method in class org.apache.commons.collections.set.ListOrderedSet
remove(int) - method in class org.apache.commons.collections.list.PredicatedList
remove(int) - method in class org.apache.commons.collections.SequencedHashMap
Removes the element at the specified index.
remove(int) - method in class org.apache.commons.collections.list.SetUniqueList
remove(int) - method in class org.apache.commons.collections.list.SynchronizedList
remove(int) - method in class org.apache.commons.collections.list.TransformedList
remove(int) - method in class org.apache.commons.collections.list.TreeList
Removes the element at the specified index.
remove(int) - method in class org.apache.commons.collections.list.UnmodifiableList
remove(Object) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
remove(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
remove(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.EntrySet
remove(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.KeySet
remove(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.Values
remove(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap
Removes the specified mapping from this map.
remove(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
remove(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
remove(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
remove(Object) - method in class org.apache.commons.collections.bag.AbstractMapBag
Removes all copies of the specified object from the bag.
remove(Object) - method in class org.apache.commons.collections.map.AbstractMapDecorator
remove(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap
Removes the specified mapping from this map.
remove(Object) - method in class org.apache.commons.collections.Bag
(Violation) Removes all occurrences of the given object from the bag.
remove(Object) - method in class org.apache.commons.collections.collection.CompositeCollection
Removes an object from the collection, throwing UnsupportedOperationException unless a CollectionMutator strategy is specified.
remove(Object) - method in class org.apache.commons.collections.map.CompositeMap
Removes the mapping for this key from this map if it is present (optional operation).
remove(Object) - method in class org.apache.commons.collections.set.CompositeSet
If a CollectionMutator is defined for this CompositeSet then this method will be called anyway.
remove(Object) - method in class org.apache.commons.collections.CursorableLinkedList
Removes the first occurrence in this list of the specified element.
remove(Object) - method in class org.apache.commons.collections.DefaultMapBag
remove(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Removes the mapping for this key from this map if present
remove(Object) - method in class org.apache.commons.collections.FastArrayList
Remove the first occurrence of the specified element from the list, and shift any subsequent elements down one position.
remove(Object) - method in class org.apache.commons.collections.FastHashMap
Remove any mapping for this key, and return any previously mapped value.
remove(Object) - method in class org.apache.commons.collections.FastTreeMap
Remove any mapping for this key, and return any previously mapped value.
remove(Object) - method in class org.apache.commons.collections.list.FixedSizeList
remove(Object) - method in class org.apache.commons.collections.map.FixedSizeMap
remove(Object) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
remove(Object) - method in class org.apache.commons.collections.map.Flat3Map
Removes the specified mapping from this map.
remove(Object) - method in class org.apache.commons.collections.map.ListOrderedMap
remove(Object) - method in class org.apache.commons.collections.set.ListOrderedSet
remove(Object) - method in class org.apache.commons.collections.set.MapBackedSet
remove(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
remove(Object) - method in class org.apache.commons.collections.MultiMap
Removes all values associated with the specified key.
remove(Object) - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.remove(Object) method.
remove(Object) - method in class org.apache.commons.collections.ReferenceMap
Removes the key and its associated value from this map.
remove(Object) - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.remove(Object).
remove(Object) - method in class org.apache.commons.collections.list.SetUniqueList
remove(Object) - method in class org.apache.commons.collections.map.SingletonMap
Unsupported operation.
remove(Object) - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.remove(Object).
remove(Object) - method in class org.apache.commons.collections.map.StaticBucketMap
Removes the specified key from the map.
remove(Object) - method in class org.apache.commons.collections.collection.SynchronizedCollection
remove(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Removes the mapping for this key from this map if present.
remove(Object) - method in class org.apache.commons.collections.bag.UnmodifiableBag
remove(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
remove(Object) - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
remove(Object) - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
remove(Object) - method in class org.apache.commons.collections.collection.UnmodifiableCollection
remove(Object) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
remove(Object) - method in class org.apache.commons.collections.list.UnmodifiableList
remove(Object) - method in class org.apache.commons.collections.map.UnmodifiableMap
remove(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
remove(Object) - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
remove(Object) - method in class org.apache.commons.collections.set.UnmodifiableSet
remove(Object) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
remove(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
remove(Object) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
remove(Object) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
remove(Object,int) - method in class org.apache.commons.collections.bag.AbstractBagDecorator
remove(Object,int) - method in class org.apache.commons.collections.bag.AbstractMapBag
Removes a specified number of copies of an object from the bag.
remove(Object,int) - method in class org.apache.commons.collections.Bag
Removes nCopies copies of the specified object from the Bag.
remove(Object,int) - method in class org.apache.commons.collections.DefaultMapBag
remove(Object,int) - method in class org.apache.commons.collections.bag.PredicatedBag
Removes nCopies copies of the specified object from the Bag.
remove(Object,int) - method in class org.apache.commons.collections.bag.SynchronizedBag
remove(Object,int) - method in class org.apache.commons.collections.bag.TransformedBag
Removes nCopies copies of the specified object from the Bag.
remove(Object,int) - method in class org.apache.commons.collections.bag.UnmodifiableBag
remove(Object,int) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
remove(Object,Object) - method in class org.apache.commons.collections.MultiHashMap
Removes a specific value from map.
remove(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes the specified multi-key from this map.
remove(Object,Object) - method in class org.apache.commons.collections.MultiMap
Removes a specific value from map.
remove(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes the specified multi-key from this map.
remove(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes the specified multi-key from this map.
remove(Object,Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes the specified multi-key from this map.
Called when an object is to be removed to the composite.
REMOVE_INVALID - static field in class org.apache.commons.collections.map.AbstractHashedMap
removeAll(Collection) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
removeAll(Collection) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.View
removeAll(Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList
removeAll(Collection) - method in class org.apache.commons.collections.bag.AbstractMapBag
Removes objects from the bag according to their count in the specified collection.
removeAll(Collection) - method in class org.apache.commons.collections.Bag
(Violation) Remove all elements represented in the given collection, respecting cardinality.
removeAll(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Removes the elements in the specified collection from this composite collection.
removeAll(Collection) - method in class org.apache.commons.collections.CursorableLinkedList
Removes from this list all the elements that are contained in the specified collection.
removeAll(Collection) - method in class org.apache.commons.collections.DefaultMapBag
removeAll(Collection) - method in class org.apache.commons.collections.FastArrayList
Remove from this collection all of its elements that are contained in the specified collection.
removeAll(Collection) - method in class org.apache.commons.collections.list.FixedSizeList
removeAll(Collection) - method in class org.apache.commons.collections.set.ListOrderedSet
removeAll(Collection) - method in class org.apache.commons.collections.set.MapBackedSet
removeAll(Collection) - method in class org.apache.commons.collections.list.SetUniqueList
removeAll(Collection) - method in class org.apache.commons.collections.collection.SynchronizedCollection
removeAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableBag
removeAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
removeAll(Collection) - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
removeAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableCollection
removeAll(Collection) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
removeAll(Collection) - method in class org.apache.commons.collections.list.UnmodifiableList
removeAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSet
removeAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
removeAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
removeAll(Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes all mappings where the first key is that specified.
removeAll(Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes all mappings where the first two keys are those specified.
removeAll(Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes all mappings where the first three keys are those specified.
removeAll(Object,Object,Object,Object) - method in class org.apache.commons.collections.map.MultiKeyMap
Removes all mappings where the first four keys are those specified.
removeAllNodes() - method in class org.apache.commons.collections.list.AbstractLinkedList
Removes all nodes by resetting the circular list marker.
removeAllNodes() - method in class org.apache.commons.collections.list.CursorableLinkedList
Removes all nodes by iteration.
removeAllNodes() - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Removes all the nodes from the list, storing as many as required in the cache for reuse.
removeComposited(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Removes a collection from the those being decorated in this composite.
removeComposited(Map) - method in class org.apache.commons.collections.map.CompositeMap
Remove a Map from the composite.
Removes an entry from the chain stored in a particular index.
Removes an entry from the map and the linked list.
removeFirst() - method in class org.apache.commons.collections.list.AbstractLinkedList
removeFirst() - method in class org.apache.commons.collections.CursorableLinkedList
Removes the first element of this list, if any.
removeLast() - method in class org.apache.commons.collections.list.AbstractLinkedList
removeLast() - method in class org.apache.commons.collections.CursorableLinkedList
Removes the last element of this list, if any.
Removes the given org.apache.commons.collections.CursorableLinkedList.Listable from my list.
removeLRU() - method in class org.apache.commons.collections.LRUMap
This method is used internally by the class for finding and removing the LRU Object.
removeLRU(org.apache.commons.collections.map.AbstractLinkedMap.LinkEntry) - method in class org.apache.commons.collections.map.LRUMap
Subclass method to control removal of the least recently used entry from the map.
Removes a mapping from the map.
Removes the specified node from the list.
Removes the specified node from the list.
Removes the node from the list, storing it in the cache for reuse if the cache is not yet full.
removeValue(Object) - method in class org.apache.commons.collections.bidimap.AbstractBidiMapDecorator
removeValue(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Removes the key-value pair that is currently mapped to the specified value (optional operation).
removeValue(Object) - method in class org.apache.commons.collections.BidiMap
Removes the key-value pair that is currently mapped to the specified value (optional operation).
removeValue(Object) - method in class org.apache.commons.collections.DoubleOrderedMap
Removes the mapping for this value from this map if present
removeValue(Object) - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Removes the mapping for this value from this map if present.
removeValue(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
removeValue(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Removes the key-value pair that is currently mapped to the specified value (optional operation).
removeValue(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
reset() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Resets the iterator back to the position at which the iterator was created.
reset() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
reset() - method in class org.apache.commons.collections.iterators.ArrayIterator
Resets the iterator back to the start index.
reset() - method in class org.apache.commons.collections.iterators.ArrayListIterator
Resets the iterator back to the start index.
reset() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
reset() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Resets the state of the iterator.
reset() - method in class org.apache.commons.collections.iterators.LoopingIterator
Resets the iterator back to the start of the collection.
reset() - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Resets the iterator back to the start index.
reset() - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Resets the iterator back to the start index.
reset() - method in class org.apache.commons.collections.ResettableIterator
Resets the iterator back to the position at which the iterator was created.
reset() - method in class org.apache.commons.collections.ResettableListIterator
Resets the iterator back to the position at which the iterator was created.
reset() - method in class org.apache.commons.collections.iterators.SingletonIterator
Reset the iterator to the start.
reset() - method in class org.apache.commons.collections.iterators.SingletonListIterator
Reset the iterator back to the start.
RESETTABLE_INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyIterator
Singleton instance of the iterator.
RESETTABLE_INSTANCE - static field in class org.apache.commons.collections.iterators.EmptyListIterator
Singleton instance of the iterator.
ResettableIterator - interface org.apache.commons.collections.ResettableIterator
Defines an iterator that can be reset back to an initial state.
ResettableListIterator - interface org.apache.commons.collections.ResettableListIterator
Defines a list iterator that can be reset back to an initial state.
Called when adding a new Composited Map results in a key collision.
Called when a Set is added to the CompositeSet and there is a collision between existing and added sets.
retainAll(Collection) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
retainAll(Collection) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.View
retainAll(Collection) - method in class org.apache.commons.collections.list.AbstractLinkedList
retainAll(Collection) - method in class org.apache.commons.collections.bag.AbstractMapBag
Remove any members of the bag that are not in the given bag, respecting cardinality.
retainAll(Collection) - method in class org.apache.commons.collections.Bag
(Violation) Remove any members of the bag that are not in the given collection, respecting cardinality.
retainAll(Collection) - method in class org.apache.commons.collections.collection.CompositeCollection
Retains all the elements in the specified collection in this composite collection, removing all others.
retainAll(Collection) - method in class org.apache.commons.collections.CursorableLinkedList
Retains only the elements in this list that are contained in the specified collection.
retainAll(Collection) - method in class org.apache.commons.collections.DefaultMapBag
Remove any members of the bag that are not in the given bag, respecting cardinality.
retainAll(Collection) - method in class org.apache.commons.collections.FastArrayList
Remove from this collection all of its elements except those that are contained in the specified collection.
retainAll(Collection) - method in class org.apache.commons.collections.list.FixedSizeList
retainAll(Collection) - method in class org.apache.commons.collections.set.ListOrderedSet
retainAll(Collection) - method in class org.apache.commons.collections.set.MapBackedSet
retainAll(Collection) - method in class org.apache.commons.collections.list.SetUniqueList
retainAll(Collection) - method in class org.apache.commons.collections.collection.SynchronizedCollection
retainAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableBag
retainAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
retainAll(Collection) - method in class org.apache.commons.collections.buffer.UnmodifiableBuffer
retainAll(Collection) - method in class org.apache.commons.collections.collection.UnmodifiableCollection
retainAll(Collection) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
retainAll(Collection) - method in class org.apache.commons.collections.list.UnmodifiableList
retainAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSet
retainAll(Collection) - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
retainAll(Collection) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
retainAll(org.apache.commons.collections.Bag) - method in class org.apache.commons.collections.DefaultMapBag
Remove any members of the bag that are not in the given bag, respecting cardinality.
Reuses an existing key-value mapping, storing completely new data.
Reuses an entry by removing it and moving it to a new place in the map.
reverseArray(Object[]) - static method in class org.apache.commons.collections.CollectionUtils
Reverses the order of the given array.
ReverseComparator - class org.apache.commons.collections.comparators.ReverseComparator
Reverses the order of another comparator by reversing the arguments to its compare method.
ReverseComparator() - constructor for class org.apache.commons.collections.comparators.ReverseComparator
Creates a comparator that compares objects based on the inverse of their natural ordering.
ReverseComparator(Comparator) - constructor for class org.apache.commons.collections.comparators.ReverseComparator
Creates a comparator that inverts the comparison of the given comparator.
reversedComparator(Comparator) - static method in class org.apache.commons.collections.ComparatorUtils
Gets a comparator that reverses the order of the given comparator.
root - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The root object in the tree

S

safeAddToMap(Map,Object,Object) - static method in class org.apache.commons.collections.MapUtils
Nice method for adding data to a map in such a way as to not get NPE's.
save(OutputStream,String) - method in class org.apache.commons.collections.ExtendedProperties
Save the properties to the given output stream.
search(Object) - method in class org.apache.commons.collections.ArrayStack
Returns the one-based position of the distance from the top that the specified object exists on this stack, where the top-most element is considered to be at distance 1.
select(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Selects all elements from input collection which match the given predicate into an output collection.
select(Collection,org.apache.commons.collections.Predicate,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Selects all elements from input collection which match the given predicate and adds them to outputCollection.
selectRejected(Collection,org.apache.commons.collections.Predicate) - static method in class org.apache.commons.collections.CollectionUtils
Selects all elements from inputCollection which don't match the given predicate into an output collection.
Selects all elements from inputCollection which don't match the given predicate and adds them to outputCollection.
sequence() - method in class org.apache.commons.collections.SequencedHashMap
Returns a List view of the keys rather than a set view.
SequencedHashMap - class org.apache.commons.collections.SequencedHashMap
A map of objects whose mapping entries are sequenced based on the order in which they were added.
SequencedHashMap() - constructor for class org.apache.commons.collections.SequencedHashMap
Construct a new sequenced hash map with default initial size and load factor.
SequencedHashMap(int) - constructor for class org.apache.commons.collections.SequencedHashMap
Construct a new sequenced hash map with the specified initial size and default load factor.
SequencedHashMap(int,float) - constructor for class org.apache.commons.collections.SequencedHashMap
Construct a new sequenced hash map with the specified initial size and load factor.
SequencedHashMap(Map) - constructor for class org.apache.commons.collections.SequencedHashMap
Construct a new sequenced hash map and add all the elements in the specified map.
set - field in class org.apache.commons.collections.list.SetUniqueList
Internal Set to maintain uniqueness.
set(int,Object) - method in class org.apache.commons.collections.list.AbstractLinkedList
set(int,Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
set(int,Object) - method in class org.apache.commons.collections.list.AbstractListDecorator
set(int,Object) - method in class org.apache.commons.collections.CursorableLinkedList
Replaces the element at the specified position in this list with the specified element.
set(int,Object) - method in class org.apache.commons.collections.FastArrayList
Replace the element at the specified position in this list with the specified element.
set(int,Object) - method in class org.apache.commons.collections.list.FixedSizeList
set(int,Object) - method in class org.apache.commons.collections.list.PredicatedList
set(int,Object) - method in class org.apache.commons.collections.list.SetUniqueList
Sets the value at the specified index avoiding duplicates.
set(int,Object) - method in class org.apache.commons.collections.list.SynchronizedList
set(int,Object) - method in class org.apache.commons.collections.list.TransformedList
set(int,Object) - method in class org.apache.commons.collections.list.TreeList
Sets the element at the specified index.
set(int,Object) - method in class org.apache.commons.collections.list.UnmodifiableList
set(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedListIterator
set(Object) - method in class org.apache.commons.collections.iterators.AbstractListIteratorDecorator
set(Object) - method in class org.apache.commons.collections.iterators.ArrayListIterator
Sets the element under the cursor.
set(Object) - method in class org.apache.commons.collections.iterators.FilterListIterator
Not supported.
set(Object) - method in class org.apache.commons.collections.iterators.ListIteratorWrapper
Throws UnsupportedOperationException.
set(Object) - method in class org.apache.commons.collections.iterators.ObjectArrayListIterator
Sets the element under the cursor.
set(Object) - method in class org.apache.commons.collections.list.PredicatedList.PredicatedListIterator
set(Object) - method in class org.apache.commons.collections.iterators.ProxyListIterator
Invokes the underlying ListIterator.set(Object) method.
set(Object) - method in class org.apache.commons.collections.iterators.SingletonListIterator
Set sets the value of the singleton.
set(Object) - method in class org.apache.commons.collections.list.TransformedList.TransformedListIterator
set(Object) - method in class org.apache.commons.collections.iterators.UnmodifiableListIterator
setArray(Object) - method in class org.apache.commons.collections.iterators.ArrayIterator
Sets the array that the ArrayIterator should iterate over.
setArray(Object[]) - method in class org.apache.commons.collections.iterators.ObjectArrayIterator
Sets the array that the ArrayIterator should iterate over.
setBean(Object) - method in class org.apache.commons.collections.BeanMap
Sets the bean to be operated on by this map.
setComparator(Comparator) - method in class org.apache.commons.collections.iterators.CollatingIterator
Sets the Comparator by which collation occurs.
setComparator(int,Comparator) - method in class org.apache.commons.collections.comparators.ComparatorChain
Replace the Comparator at the given index, maintaining the existing sort order.
setComparator(int,Comparator,boolean) - method in class org.apache.commons.collections.comparators.ComparatorChain
Replace the Comparator at the given index in the ComparatorChain, using the given sort order
setEnumeration(Enumeration) - method in class org.apache.commons.collections.iterators.EnumerationIterator
Sets the underlying enumeration.
setFast(boolean) - method in class org.apache.commons.collections.FastArrayList
Sets whether this list will operate in fast mode.
setFast(boolean) - method in class org.apache.commons.collections.FastHashMap
Sets whether this map is operating in fast mode.
setFast(boolean) - method in class org.apache.commons.collections.FastTreeMap
Sets whether this map is operating in fast mode.
setForwardSort(int) - method in class org.apache.commons.collections.comparators.ComparatorChain
Change the sort order at the given index in the ComparatorChain to a forward sort.
setInclude(String) - method in class org.apache.commons.collections.ExtendedProperties
Sets the property value for including other properties files.
setIterator(int,Iterator) - method in class org.apache.commons.collections.iterators.CollatingIterator
Sets the iterator at the given index.
setIterator(int,Iterator) - method in class org.apache.commons.collections.iterators.IteratorChain
Set the Iterator at the given index
setIterator(Iterator) - method in class org.apache.commons.collections.iterators.FilterIterator
Sets the iterator for this iterator to use.
setIterator(Iterator) - method in class org.apache.commons.collections.iterators.IteratorEnumeration
Sets the underlying iterator.
setIterator(Iterator) - method in class org.apache.commons.collections.iterators.ProxyIterator
Setter for property iterator.
setIterator(Iterator) - method in class org.apache.commons.collections.iterators.TransformIterator
Sets the iterator for this iterator to use.
setKey(Object) - method in class org.apache.commons.collections.keyvalue.DefaultKeyValue
Sets the key.
setKey(Object) - method in class org.apache.commons.collections.DefaultMapEntry
Sets the key stored in this Map Entry.
setListIterator(ListIterator) - method in class org.apache.commons.collections.iterators.FilterListIterator
Sets the iterator for this iterator to use.
setListIterator(ListIterator) - method in class org.apache.commons.collections.iterators.ProxyListIterator
Setter for property iterator.
setMap(Map) - method in class org.apache.commons.collections.DefaultMapBag
Utility method for implementations to set the map that backs this bag.
setMaximumCacheSize(int) - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Sets the maximum size of the cache.
setMaximumSize(int) - method in class org.apache.commons.collections.LRUMap
Setter for property maximumSize.
CompositeSet.SetMutator - interface org.apache.commons.collections.set.CompositeSet.SetMutator
Define callbacks for mutation operations.
Specify a CollectionMutator strategy instance to handle changes.
This can receive either a CompositeCollection.CollectionMutator or a CompositeSet.SetMutator.
Specify the MapMutator to be used by mutation operations.
Sets the next node.
setOrder - field in class org.apache.commons.collections.set.ListOrderedSet
Internal list to hold the sequence of objects
setPredicate(org.apache.commons.collections.Predicate) - method in class org.apache.commons.collections.iterators.FilterIterator
Sets the predicate this the iterator to use.
setPredicate(org.apache.commons.collections.Predicate) - method in class org.apache.commons.collections.iterators.FilterListIterator
Sets the predicate this the iterator to use.
Sets the previous node.
setProperty(String,Object) - method in class org.apache.commons.collections.ExtendedProperties
Set a property, this will replace any previously set values.
setReverseSort(int) - method in class org.apache.commons.collections.comparators.ComparatorChain
Change the sort order at the given index in the ComparatorChain to a reverse sort.
setTransformer(org.apache.commons.collections.Transformer) - method in class org.apache.commons.collections.iterators.TransformIterator
Sets the transformer this the iterator to use.
SetUniqueList - class org.apache.commons.collections.list.SetUniqueList
Decorates a List to ensure that no duplicates are present much like a Set.
SetUniqueList(List,Set) - constructor for class org.apache.commons.collections.list.SetUniqueList
Constructor that wraps (not copies) the List and specifies the set to use.
setUnknownObjectBehavior(int) - method in class org.apache.commons.collections.comparators.FixedOrderComparator
Sets the behavior for comparing unknown objects.
SetUtils - class org.apache.commons.collections.SetUtils
Provides utility methods and decorators for Set and SortedSet instances.
SetUtils() - constructor for class org.apache.commons.collections.SetUtils
SetUtils should not normally be instantiated.
setValue(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
Sets the value associated with the current key (optional operation).
setValue(Object) - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.MapEntry
setValue(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
setValue(Object) - method in class org.apache.commons.collections.map.AbstractHashedMap.HashMapIterator
setValue(Object) - method in class org.apache.commons.collections.list.AbstractLinkedList.Node
Sets the value of the node.
setValue(Object) - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkMapIterator
setValue(Object) - method in class org.apache.commons.collections.keyvalue.AbstractMapEntry
Sets the value stored in this Map Entry.
setValue(Object) - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
setValue(Object) - method in class org.apache.commons.collections.iterators.AbstractMapIteratorDecorator
Sets the value associated with the current key (optional operation).
setValue(Object) - method in class org.apache.commons.collections.iterators.AbstractOrderedMapIteratorDecorator
Sets the value associated with the current key (optional operation).
setValue(Object) - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Sets the value of the entry.
setValue(Object) - method in class org.apache.commons.collections.BeanMap.MyMapEntry
Sets the value.
setValue(Object) - method in class org.apache.commons.collections.keyvalue.DefaultKeyValue
Sets the value.
setValue(Object) - method in class org.apache.commons.collections.DefaultMapEntry
Sets the value stored in this Map Entry.
setValue(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
setValue(Object) - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Sets the value associated with the current key.
setValue(Object) - method in class org.apache.commons.collections.MapIterator
Sets the value associated with the current key (optional operation).
setValue(Object) - method in class org.apache.commons.collections.map.SingletonMap
Sets the value.
setValue(Object) - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Sets the value associated with the key direct onto the map.
setValue(Object) - method in class org.apache.commons.collections.keyvalue.UnmodifiableMapEntry
Throws UnsupportedOperationException.
setValue(Object) - method in class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Sets the value associated with the current key (optional operation).
setValue(Object) - method in class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
SETVALUE_INVALID - static field in class org.apache.commons.collections.map.AbstractHashedMap
shrinkCacheToMaximumSize() - method in class org.apache.commons.collections.list.NodeCachingLinkedList
Reduce the size of the cache to the maximum, if necessary.
SingletonIterator - class org.apache.commons.collections.iterators.SingletonIterator
SingletonIterator is an Iterator over a single object instance.
singletonIterator(Object) - static method in class org.apache.commons.collections.IteratorUtils
Gets a singleton iterator.
SingletonIterator(Object) - constructor for class org.apache.commons.collections.iterators.SingletonIterator
Constructs a new SingletonIterator where remove is a permitted operation.
SingletonIterator(Object,boolean) - constructor for class org.apache.commons.collections.iterators.SingletonIterator
Constructs a new SingletonIterator optionally choosing if remove is a permitted operation.
SingletonListIterator - class org.apache.commons.collections.iterators.SingletonListIterator
SingletonIterator is an ListIterator over a single object instance.
singletonListIterator(Object) - static method in class org.apache.commons.collections.IteratorUtils
Gets a singleton list iterator.
SingletonListIterator(Object) - constructor for class org.apache.commons.collections.iterators.SingletonListIterator
Constructs a new SingletonListIterator.
SingletonMap - class org.apache.commons.collections.map.SingletonMap
A Map implementation that holds a single item and is fixed size.
SingletonMap() - constructor for class org.apache.commons.collections.map.SingletonMap
Constructor that creates a map of null to null.
SingletonMap(Map) - constructor for class org.apache.commons.collections.map.SingletonMap
Constructor copying elements from another map.
SingletonMap(Map.Entry) - constructor for class org.apache.commons.collections.map.SingletonMap
Constructor specifying the key and value as a MapEntry.
SingletonMap(Object,Object) - constructor for class org.apache.commons.collections.map.SingletonMap
Constructor specifying the key and value.
SingletonMap(org.apache.commons.collections.KeyValue) - constructor for class org.apache.commons.collections.map.SingletonMap
Constructor specifying the key and value as a KeyValue.
size - field in class org.apache.commons.collections.map.AbstractHashedMap
The size of the map
size - field in class org.apache.commons.collections.list.AbstractLinkedList
The size of the list
size - field in class org.apache.commons.collections.buffer.PriorityBuffer
The number of elements currently in this buffer.
size() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
size() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
size() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the size of the map.
size() - method in class org.apache.commons.collections.map.AbstractHashedMap.EntrySet
size() - method in class org.apache.commons.collections.map.AbstractHashedMap.KeySet
size() - method in class org.apache.commons.collections.map.AbstractHashedMap.Values
size() - method in class org.apache.commons.collections.list.AbstractLinkedList
size() - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
size() - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns the number of elements in this bag.
size() - method in class org.apache.commons.collections.map.AbstractMapDecorator
size() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Gets the size of the map.
size() - method in class org.apache.commons.collections.Bag
Returns the total number of items in the bag across all types.
size() - method in class org.apache.commons.collections.BeanMap
Returns the number of properties defined by the bean.
size() - method in class org.apache.commons.collections.BinaryHeap
Returns the number of elements in this heap.
size() - method in class org.apache.commons.collections.BoundedFifoBuffer
Returns the number of elements stored in the buffer.
size() - method in class org.apache.commons.collections.buffer.BoundedFifoBuffer
Returns the number of elements stored in the buffer.
size() - method in class org.apache.commons.collections.comparators.ComparatorChain
Number of Comparators in the current ComparatorChain.
size() - method in class org.apache.commons.collections.collection.CompositeCollection
Gets the size of this composite collection.
size() - method in class org.apache.commons.collections.map.CompositeMap
Returns the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.CursorableLinkedList
Returns the number of elements in this list.
size() - method in class org.apache.commons.collections.DefaultMapBag
Returns the number of elements in this bag.
size() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.FastArrayList
Return the number of elements in this list.
size() - method in class org.apache.commons.collections.FastHashMap
Return the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.FastTreeMap
Return the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.map.Flat3Map
Gets the size of the map.
size() - method in class org.apache.commons.collections.iterators.IteratorChain
Number of Iterators in the current IteratorChain.
size() - method in class org.apache.commons.collections.iterators.LoopingIterator
Gets the size of the collection underlying the iterator.
size() - method in class org.apache.commons.collections.set.MapBackedSet
size() - method in class org.apache.commons.collections.keyvalue.MultiKey
Gets the size of the list of keys.
size() - method in class org.apache.commons.collections.map.MultiKeyMap
size() - method in class org.apache.commons.collections.MultiMap
Gets the number of keys in this map.
size() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Returns the number of elements in this buffer.
size() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.size() method.
size() - method in class org.apache.commons.collections.ReferenceMap
Returns the size of this map.
size() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.size().
size() - method in class org.apache.commons.collections.map.SingletonMap
Gets the size of the map, always 1.
size() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.size().
size() - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the current size of the map.
size() - method in class org.apache.commons.collections.collection.SynchronizedCollection
size() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns the number of key-value mappings in this map.
size() - method in class org.apache.commons.collections.list.TreeList
Gets the current size of the list.
size() - method in class org.apache.commons.collections.UnboundedFifoBuffer
Returns the number of elements stored in the buffer.
size() - method in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Returns the number of elements stored in the buffer.
size(Object) - static method in class org.apache.commons.collections.CollectionUtils
Gets the size of the collection/iterator specified.
size(Object) - method in class org.apache.commons.collections.MultiHashMap
Gets the size of the collection mapped to the specified key.
SOFT - static field in class org.apache.commons.collections.map.AbstractReferenceMap
Constant indicating that soft references should be used
SOFT - static field in class org.apache.commons.collections.ReferenceMap
Constant indicating that soft references should be used.
SortedBag - interface org.apache.commons.collections.SortedBag
Defines a type of Bag that maintains a sorted order among its unique representative members.
SortedBidiMap - interface org.apache.commons.collections.SortedBidiMap
Defines a map that allows bidirectional lookup between key and values and retains both keys and values in sorted order.
sortsTrueFirst() - method in class org.apache.commons.collections.comparators.BooleanComparator
Returns true iff I sort true values before false values.
stack - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The stack of iterators
START_TOKEN - static field in class org.apache.commons.collections.ExtendedProperties
startIndex - field in class org.apache.commons.collections.iterators.ArrayIterator
The start index to loop from
startIndex - field in class org.apache.commons.collections.iterators.ObjectArrayIterator
The start index to loop from
StaticBucketMap - class org.apache.commons.collections.StaticBucketMap
A StaticBucketMap is an efficient, thread-safe implementation of java.util.Map that performs well in in a highly thread-contentious environment.
StaticBucketMap - class org.apache.commons.collections.map.StaticBucketMap
A StaticBucketMap is an efficient, thread-safe implementation of java.util.Map that performs well in in a highly thread-contentious environment.
StaticBucketMap() - constructor for class org.apache.commons.collections.StaticBucketMap
Initializes the map with the default number of buckets (255).
StaticBucketMap() - constructor for class org.apache.commons.collections.map.StaticBucketMap
Initializes the map with the default number of buckets (255).
StaticBucketMap(int) - constructor for class org.apache.commons.collections.StaticBucketMap
Initializes the map with a specified number of buckets.
StaticBucketMap(int) - constructor for class org.apache.commons.collections.map.StaticBucketMap
Initializes the map with a specified number of buckets.
StringValueTransformer - class org.apache.commons.collections.functors.StringValueTransformer
Transformer implementation that returns the String.valueOf.
stringValueTransformer() - static method in class org.apache.commons.collections.TransformerUtils
Gets a transformer that returns a java.lang.String representation of the input object.
sub - field in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubListIterator
The parent list
subList(int,int) - method in class org.apache.commons.collections.list.AbstractLinkedList
Gets a sublist of the main list.
subList(int,int) - method in class org.apache.commons.collections.list.AbstractLinkedList.LinkedSubList
subList(int,int) - method in class org.apache.commons.collections.list.AbstractListDecorator
subList(int,int) - method in class org.apache.commons.collections.CursorableLinkedList
Returns a fail-fast sublist.
subList(int,int) - method in class org.apache.commons.collections.FastArrayList
Return a view of the portion of this list between fromIndex (inclusive) and toIndex (exclusive).
subList(int,int) - method in class org.apache.commons.collections.list.FixedSizeList
subList(int,int) - method in class org.apache.commons.collections.list.LazyList
subList(int,int) - method in class org.apache.commons.collections.list.PredicatedList
subList(int,int) - method in class org.apache.commons.collections.list.SetUniqueList
subList(int,int) - method in class org.apache.commons.collections.list.SynchronizedList
subList(int,int) - method in class org.apache.commons.collections.list.TransformedList
subList(int,int) - method in class org.apache.commons.collections.list.UnmodifiableList
subMap(Object,Object) - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
subMap(Object,Object) - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
subMap(Object,Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
subMap(Object,Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
subMap(Object,Object) - method in class org.apache.commons.collections.FastTreeMap
Return a view of the portion of this map whose keys are in the range fromKey (inclusive) to toKey (exclusive).
subMap(Object,Object) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
subMap(Object,Object) - method in class org.apache.commons.collections.map.LazySortedMap
subMap(Object,Object) - method in class org.apache.commons.collections.map.PredicatedSortedMap
subMap(Object,Object) - method in class org.apache.commons.collections.map.TransformedSortedMap
subMap(Object,Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
subMap(Object,Object) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
subSet(Object,Object) - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
subSet(Object,Object) - method in class org.apache.commons.collections.set.PredicatedSortedSet
subSet(Object,Object) - method in class org.apache.commons.collections.set.SynchronizedSortedSet
subSet(Object,Object) - method in class org.apache.commons.collections.set.TransformedSortedSet
subSet(Object,Object) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
subset(String) - method in class org.apache.commons.collections.ExtendedProperties
Create an ExtendedProperties object that is a subset of this one.
subtract(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a new Collection containing a - b.
subtract(List,List) - static method in class org.apache.commons.collections.ListUtils
Subtracts all elements in the second list from the first list, placing the results in a new list.
sum(List,List) - static method in class org.apache.commons.collections.ListUtils
Returns the sum of the given lists.
SwitchClosure - class org.apache.commons.collections.functors.SwitchClosure
Closure implementation calls the closure whose predicate returns true, like a switch statement.
switchClosure(Map) - static method in class org.apache.commons.collections.ClosureUtils
Create a new Closure that calls one of the closures depending on the predicates.
Create a new Closure that calls one of the closures depending on the predicates.
Create a new Closure that calls one of the closures depending on the predicates.
Constructor that performs no validation.
switchMapClosure(Map) - static method in class org.apache.commons.collections.ClosureUtils
Create a new Closure that uses the input object as a key to find the closure to call.
switchMapTransformer(Map) - static method in class org.apache.commons.collections.TransformerUtils
Create a new Transformer that uses the input object as a key to find the transformer to call.
SwitchTransformer - class org.apache.commons.collections.functors.SwitchTransformer
Transformer implementation calls the transformer whose predicate returns true, like a switch statement.
switchTransformer(Map) - static method in class org.apache.commons.collections.TransformerUtils
Create a new Transformer that calls one of the transformers depending on the predicates.
Create a new Transformer that calls one of two transformers depending on the specified predicate.
Create a new Transformer that calls one of the transformers depending on the predicates.
Constructor that performs no validation.
Create a new Transformer that calls one of the transformers depending on the predicates.
SynchronizedBag - class org.apache.commons.collections.bag.SynchronizedBag
Decorates another Bag to synchronize its behaviour for a multi-threaded environment.
synchronizedBag(org.apache.commons.collections.Bag) - static method in class org.apache.commons.collections.BagUtils
Returns a synchronized (thread-safe) bag backed by the given bag.
SynchronizedBag(org.apache.commons.collections.Bag) - constructor for class org.apache.commons.collections.bag.SynchronizedBag
Constructor that wraps (not copies).
SynchronizedBag(org.apache.commons.collections.Bag,Object) - constructor for class org.apache.commons.collections.bag.SynchronizedBag
Constructor that wraps (not copies).
SynchronizedBuffer - class org.apache.commons.collections.buffer.SynchronizedBuffer
Decorates another Buffer to synchronize its behaviour for a multi-threaded environment.
synchronizedBuffer(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.BufferUtils
Returns a synchronized buffer backed by the given buffer.
SynchronizedBuffer(org.apache.commons.collections.Buffer) - constructor for class org.apache.commons.collections.buffer.SynchronizedBuffer
Constructor that wraps (not copies).
SynchronizedBuffer(org.apache.commons.collections.Buffer,Object) - constructor for class org.apache.commons.collections.buffer.SynchronizedBuffer
Constructor that wraps (not copies).
SynchronizedCollection - class org.apache.commons.collections.collection.SynchronizedCollection
Decorates another Collection to synchronize its behaviour for a multi-threaded environment.
synchronizedCollection(Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a synchronized collection backed by the given collection.
SynchronizedCollection(Collection) - constructor for class org.apache.commons.collections.collection.SynchronizedCollection
Constructor that wraps (not copies).
SynchronizedCollection(Collection,Object) - constructor for class org.apache.commons.collections.collection.SynchronizedCollection
Constructor that wraps (not copies).
SynchronizedList - class org.apache.commons.collections.list.SynchronizedList
Decorates another List to synchronize its behaviour for a multi-threaded environment.
synchronizedList(List) - static method in class org.apache.commons.collections.ListUtils
Returns a synchronized list backed by the given list.
SynchronizedList(List) - constructor for class org.apache.commons.collections.list.SynchronizedList
Constructor that wraps (not copies).
SynchronizedList(List,Object) - constructor for class org.apache.commons.collections.list.SynchronizedList
Constructor that wraps (not copies).
synchronizedMap(Map) - static method in class org.apache.commons.collections.MapUtils
Returns a synchronized map backed by the given map.
SynchronizedPriorityQueue - class org.apache.commons.collections.SynchronizedPriorityQueue
A thread safe version of the PriorityQueue.
Constructs a new synchronized priority queue.
SynchronizedSet - class org.apache.commons.collections.set.SynchronizedSet
Decorates another Set to synchronize its behaviour for a multi-threaded environment.
synchronizedSet(Set) - static method in class org.apache.commons.collections.SetUtils
Returns a synchronized set backed by the given set.
SynchronizedSet(Set) - constructor for class org.apache.commons.collections.set.SynchronizedSet
Constructor that wraps (not copies).
SynchronizedSet(Set,Object) - constructor for class org.apache.commons.collections.set.SynchronizedSet
Constructor that wraps (not copies).
SynchronizedSortedBag - class org.apache.commons.collections.bag.SynchronizedSortedBag
Decorates another SortedBag to synchronize its behaviour for a multi-threaded environment.
SynchronizedSortedBag(org.apache.commons.collections.Bag,Object) - constructor for class org.apache.commons.collections.bag.SynchronizedSortedBag
Constructor that wraps (not copies).
synchronizedSortedBag(org.apache.commons.collections.SortedBag) - static method in class org.apache.commons.collections.BagUtils
Returns a synchronized (thread-safe) sorted bag backed by the given sorted bag.
SynchronizedSortedBag(org.apache.commons.collections.SortedBag) - constructor for class org.apache.commons.collections.bag.SynchronizedSortedBag
Constructor that wraps (not copies).
synchronizedSortedMap(SortedMap) - static method in class org.apache.commons.collections.MapUtils
Returns a synchronized sorted map backed by the given sorted map.
SynchronizedSortedSet - class org.apache.commons.collections.set.SynchronizedSortedSet
Decorates another SortedSet to synchronize its behaviour for a multi-threaded environment.
synchronizedSortedSet(SortedSet) - static method in class org.apache.commons.collections.SetUtils
Returns a synchronized sorted set backed by the given sorted set.
SynchronizedSortedSet(SortedSet) - constructor for class org.apache.commons.collections.set.SynchronizedSortedSet
Constructor that wraps (not copies).
SynchronizedSortedSet(SortedSet,Object) - constructor for class org.apache.commons.collections.set.SynchronizedSortedSet
Constructor that wraps (not copies).

T

tail - field in class org.apache.commons.collections.buffer.UnboundedFifoBuffer
The current tail index.
tailMap(Object) - method in class org.apache.commons.collections.bidimap.AbstractSortedBidiMapDecorator
tailMap(Object) - method in class org.apache.commons.collections.map.AbstractSortedMapDecorator
tailMap(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap
tailMap(Object) - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
tailMap(Object) - method in class org.apache.commons.collections.FastTreeMap
Return a view of the portion of this map whose keys are greater than or equal to the specified key.
tailMap(Object) - method in class org.apache.commons.collections.map.FixedSizeSortedMap
tailMap(Object) - method in class org.apache.commons.collections.map.LazySortedMap
tailMap(Object) - method in class org.apache.commons.collections.map.PredicatedSortedMap
tailMap(Object) - method in class org.apache.commons.collections.map.TransformedSortedMap
tailMap(Object) - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
tailMap(Object) - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
tailSet(Object) - method in class org.apache.commons.collections.set.AbstractSortedSetDecorator
tailSet(Object) - method in class org.apache.commons.collections.set.PredicatedSortedSet
tailSet(Object) - method in class org.apache.commons.collections.set.SynchronizedSortedSet
tailSet(Object) - method in class org.apache.commons.collections.set.TransformedSortedSet
tailSet(Object) - method in class org.apache.commons.collections.set.UnmodifiableSortedSet
testBoolean(String) - method in class org.apache.commons.collections.ExtendedProperties
Test whether the string represent by value maps to a boolean value or not.
threshold - field in class org.apache.commons.collections.map.AbstractHashedMap
Size at which to rehash
TiedMapEntry - class org.apache.commons.collections.keyvalue.TiedMapEntry
A Map Entry tied to a map underneath.
TiedMapEntry(Map,Object) - constructor for class org.apache.commons.collections.keyvalue.TiedMapEntry
Constructs a new entry with the given Map and key.
toArray() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
toArray() - method in class org.apache.commons.collections.list.AbstractLinkedList
toArray() - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns an array of all of this bag's elements.
toArray() - method in class org.apache.commons.collections.collection.CompositeCollection
Returns an array containing all of the elements in this composite.
toArray() - method in class org.apache.commons.collections.CursorableLinkedList
Returns an array containing all of the elements in this list in proper sequence.
toArray() - method in class org.apache.commons.collections.DefaultMapBag
Returns an array of all of this bag's elements.
toArray() - method in class org.apache.commons.collections.FastArrayList
Return an array containing all of the elements in this list in the correct order.
toArray() - method in class org.apache.commons.collections.set.ListOrderedSet
toArray() - method in class org.apache.commons.collections.set.MapBackedSet
toArray() - method in class org.apache.commons.collections.collection.SynchronizedCollection
toArray() - method in class org.apache.commons.collections.list.TreeList
Converts the list into an array.
toArray() - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
toArray(a[]) - method in class org.apache.commons.collections.CursorableLinkedList
Returns an array containing all of the elements in this list in proper sequence; the runtime type of the returned array is that of the specified array.
toArray(a[]) - method in class org.apache.commons.collections.set.ListOrderedSet
toArray(array[]) - method in class org.apache.commons.collections.FastArrayList
Return an array containing all of the elements in this list in the correct order.
toArray(array[]) - method in class org.apache.commons.collections.map.UnmodifiableEntrySet
toArray(Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an array based on an iterator.
toArray(Iterator,Class) - static method in class org.apache.commons.collections.IteratorUtils
Gets an array based on an iterator.
toArray(Object[]) - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
toArray(Object[]) - method in class org.apache.commons.collections.list.AbstractLinkedList
toArray(Object[]) - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns an array of all of this bag's elements.
toArray(Object[]) - method in class org.apache.commons.collections.collection.CompositeCollection
Returns an object array, populating the supplied array if possible.
toArray(Object[]) - method in class org.apache.commons.collections.DefaultMapBag
Returns an array of all of this bag's elements.
toArray(Object[]) - method in class org.apache.commons.collections.set.MapBackedSet
toArray(Object[]) - method in class org.apache.commons.collections.collection.SynchronizedCollection
toCollection() - method in class org.apache.commons.collections.collection.CompositeCollection
Returns a new collection containing all of the elements
toList(Enumeration) - static method in class org.apache.commons.collections.EnumerationUtils
Creates a list based on an enumeration.
toList(Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list based on an iterator.
toList(Iterator,int) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list based on an iterator.
toListIterator(Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets a list iterator based on a simple iterator.
toMap(ResourceBundle) - static method in class org.apache.commons.collections.MapUtils
Creates a new HashMap using data copied from a ResourceBundle.
toMapEntry() - method in class org.apache.commons.collections.keyvalue.DefaultKeyValue
Returns a new Map.Entry object with key and value from this pair.
toProperties(Map) - static method in class org.apache.commons.collections.MapUtils
Gets a new Properties object initialised with the values from a Map.
toReference(int,Object,int) - method in class org.apache.commons.collections.map.AbstractReferenceMap.ReferenceEntry
Constructs a reference of the given type to the given referent.
toString() - method in class org.apache.commons.collections.collection.AbstractCollectionDecorator
toString() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
toString() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap.BidiMapIterator
toString() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the map as a String.
toString() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
toString() - method in class org.apache.commons.collections.map.AbstractHashedMap.HashIterator
toString() - method in class org.apache.commons.collections.keyvalue.AbstractKeyValue
Gets a debugging String view of the pair.
toString() - method in class org.apache.commons.collections.list.AbstractLinkedList
toString() - method in class org.apache.commons.collections.map.AbstractLinkedMap.LinkIterator
toString() - method in class org.apache.commons.collections.bag.AbstractMapBag
Implement a toString() method suitable for debugging.
toString() - method in class org.apache.commons.collections.map.AbstractMapDecorator
toString() - method in class org.apache.commons.collections.keyvalue.AbstractMapEntryDecorator
toString() - method in class org.apache.commons.collections.BeanMap
toString() - method in class org.apache.commons.collections.BinaryHeap
Returns a string representation of this heap.
toString() - method in class org.apache.commons.collections.CursorableLinkedList
Returns a String representation of this list, suitable for debugging.
toString() - method in class org.apache.commons.collections.DefaultMapBag
Implement a toString() method suitable for debugging.
toString() - method in class org.apache.commons.collections.DefaultMapEntry
Written to match the output of the Map.Entry's used in a java.util.HashMap.
toString() - method in class org.apache.commons.collections.bidimap.DualTreeBidiMap.BidiOrderedMapIterator
toString() - method in class org.apache.commons.collections.iterators.EntrySetMapIterator
Gets the iterator as a String.
toString() - method in class org.apache.commons.collections.FastArrayList
Return a String representation of this object.
toString() - method in class org.apache.commons.collections.map.Flat3Map
Gets the map as a String.
toString() - method in class org.apache.commons.collections.map.ListOrderedMap
Returns the Map as a string.
toString() - method in class org.apache.commons.collections.set.ListOrderedSet
Uses the underlying List's toString so that order is achieved.
toString() - method in class org.apache.commons.collections.keyvalue.MultiKey
Gets a debugging string version of the key.
toString() - method in class org.apache.commons.collections.map.MultiKeyMap
toString() - method in class org.apache.commons.collections.buffer.PriorityBuffer
Returns a string representation of this heap.
toString() - method in class org.apache.commons.collections.SequencedHashMap
Provides a string representation of the entries within the map.
toString() - method in class org.apache.commons.collections.map.SingletonMap
Gets the map as a String.
toString() - method in class org.apache.commons.collections.collection.SynchronizedCollection
toString() - method in class org.apache.commons.collections.SynchronizedPriorityQueue
Returns a string representation of the underlying queue.
toString() - method in class org.apache.commons.collections.keyvalue.TiedMapEntry
Gets a string version of the entry.
toString() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns a string version of this Map in standard format.
totalSize() - method in class org.apache.commons.collections.MultiHashMap
Gets the total size of the map by counting all the values.
transform(Collection) - method in class org.apache.commons.collections.collection.TransformedCollection
Transforms a collection.
transform(Collection,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.CollectionUtils
Transform the collection by applying a Transformer to each element.
transform(Object) - method in class org.apache.commons.collections.functors.ChainedTransformer
Transforms the input to result via each decorated transformer
transform(Object) - method in class org.apache.commons.collections.functors.CloneTransformer
Transforms the input to result by cloning it.
transform(Object) - method in class org.apache.commons.collections.functors.ClosureTransformer
Transforms the input to result by executing a closure.
transform(Object) - method in class org.apache.commons.collections.functors.ConstantTransformer
Transforms the input by ignoring it and returning the stored constant instead.
transform(Object) - method in class org.apache.commons.collections.functors.ExceptionTransformer
Transforms the input to result by cloning it.
transform(Object) - method in class org.apache.commons.collections.functors.FactoryTransformer
Transforms the input by ignoring the input and returning the result of calling the decorated factory.
transform(Object) - method in class org.apache.commons.collections.functors.InstantiateTransformer
Transforms the input Class object to a result by instantiation.
transform(Object) - method in class org.apache.commons.collections.functors.InvokerTransformer
Transforms the input to result by invoking a method on the input.
transform(Object) - method in class org.apache.commons.collections.functors.MapTransformer
Transforms the input to result by looking it up in a Map.
transform(Object) - method in class org.apache.commons.collections.functors.NOPTransformer
Transforms the input to result by doing nothing.
transform(Object) - method in class org.apache.commons.collections.functors.PredicateTransformer
Transforms the input to result by calling a predicate.
transform(Object) - method in class org.apache.commons.collections.functors.StringValueTransformer
Transforms the input to result by calling String.valueOf.
transform(Object) - method in class org.apache.commons.collections.functors.SwitchTransformer
Transforms the input to result by calling the transformer whose matching predicate returns true.
transform(Object) - method in class org.apache.commons.collections.collection.TransformedCollection
Transforms an object.
transform(Object) - method in class org.apache.commons.collections.Transformer
Transforms the input object (leaving it unchanged) into some output object.
transform(Object) - method in class org.apache.commons.collections.iterators.TransformIterator
Transforms the given object using the transformer.
TransformedBag - class org.apache.commons.collections.bag.TransformedBag
Decorates another Bag to transform objects that are added.
Returns a transformed bag backed by the given bag.
Constructor that wraps (not copies).
TransformedBuffer - class org.apache.commons.collections.buffer.TransformedBuffer
Decorates another Buffer to transform objects that are added.
Returns a transformed buffer backed by the given buffer.
Constructor that wraps (not copies).
TransformedCollection - class org.apache.commons.collections.collection.TransformedCollection
Decorates another Collection to transform objects that are added.
Returns a transformed bag backed by the given collection.
TransformedCollection(Collection,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.collection.TransformedCollection
Constructor that wraps (not copies).
Gets a Comparator that passes transformed objects to the given comparator.
transformedIterator(Iterator,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.IteratorUtils
Gets an iterator that transforms the elements of another iterator.
TransformedList - class org.apache.commons.collections.list.TransformedList
Decorates another List to transform objects that are added.
transformedList(List,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.ListUtils
Returns a transformed list backed by the given list.
TransformedList(List,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.list.TransformedList
Constructor that wraps (not copies).
Inner class Iterator for the TransformedList
TransformedListIterator(ListIterator) - constructor for class org.apache.commons.collections.list.TransformedList.TransformedListIterator
TransformedMap - class org.apache.commons.collections.map.TransformedMap
Decorates another Map to transform objects that are added.
Returns a transformed map backed by the given map.
Constructor that wraps (not copies).
TransformedPredicate - class org.apache.commons.collections.functors.TransformedPredicate
Predicate implementation that transforms the given object before invoking another Predicate.
Creates a predicate that transforms the input object before passing it to the predicate.
Constructor that performs no validation.
TransformedSet - class org.apache.commons.collections.set.TransformedSet
Decorates another Set to transform objects that are added.
transformedSet(Set,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.SetUtils
Returns a transformed set backed by the given set.
TransformedSet(Set,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.set.TransformedSet
Constructor that wraps (not copies).
TransformedSortedBag - class org.apache.commons.collections.bag.TransformedSortedBag
Decorates another SortedBag to transform objects that are added.
Returns a transformed sorted bag backed by the given bag.
Constructor that wraps (not copies).
TransformedSortedMap - class org.apache.commons.collections.map.TransformedSortedMap
Decorates another SortedMap to transform objects that are added.
Returns a transformed sorted map backed by the given map.
Constructor that wraps (not copies).
TransformedSortedSet - class org.apache.commons.collections.set.TransformedSortedSet
Decorates another SortedSet to transform objects that are added.
transformedSortedSet(SortedSet,org.apache.commons.collections.Transformer) - static method in class org.apache.commons.collections.SetUtils
Returns a transformed sorted set backed by the given set.
Constructor that wraps (not copies).
transformer - field in class org.apache.commons.collections.iterators.ObjectGraphIterator
The transformer to use
Transformer - interface org.apache.commons.collections.Transformer
Defines a functor interface implemented by classes that transform one object into another.
transformer - field in class org.apache.commons.collections.collection.TransformedCollection
The transformer to use
transformer - field in class org.apache.commons.collections.comparators.TransformingComparator
The transformer being used.
TransformerClosure - class org.apache.commons.collections.functors.TransformerClosure
Closure implementation that calls a Transformer using the input object and ignore the result.
TransformerClosure(org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.functors.TransformerClosure
Constructor that performs no validation.
TransformerPredicate - class org.apache.commons.collections.functors.TransformerPredicate
Predicate implementation that returns the result of a transformer.
TransformerPredicate(org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.functors.TransformerPredicate
Constructor that performs no validation.
TransformerUtils - class org.apache.commons.collections.TransformerUtils
TransformerUtils provides reference implementations and utilities for the Transformer functor interface.
TransformerUtils() - constructor for class org.apache.commons.collections.TransformerUtils
This class is not normally instantiated.
TransformingComparator - class org.apache.commons.collections.comparators.TransformingComparator
Decorates another Comparator with transformation behavior.
TransformingComparator(org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.comparators.TransformingComparator
Constructs an instance with the given Transformer and a ComparableComparator.
TransformingComparator(org.apache.commons.collections.Transformer,Comparator) - constructor for class org.apache.commons.collections.comparators.TransformingComparator
Constructs an instance with the given Transformer and Comparator.
TransformIterator - class org.apache.commons.collections.iterators.TransformIterator
Decorates an iterator such that each element returned is transformed.
TransformIterator() - constructor for class org.apache.commons.collections.iterators.TransformIterator
Constructs a new TransformIterator that will not function until the setIterator method is invoked.
TransformIterator(Iterator) - constructor for class org.apache.commons.collections.iterators.TransformIterator
Constructs a new TransformIterator that won't transform elements from the given iterator.
TransformIterator(Iterator,org.apache.commons.collections.Transformer) - constructor for class org.apache.commons.collections.iterators.TransformIterator
Constructs a new TransformIterator that will use the given iterator and transformer.
transformKey(Object) - method in class org.apache.commons.collections.map.TransformedMap
Transforms a key.
transformMap(Map) - method in class org.apache.commons.collections.map.TransformedMap
Transforms a map.
transformValue(Object) - method in class org.apache.commons.collections.map.TransformedMap
Transforms a value.
TreeBag - class org.apache.commons.collections.TreeBag
A Bag that is backed by a TreeMap.
TreeBag - class org.apache.commons.collections.bag.TreeBag
Implements SortedBag, using a TreeMap to provide the data storage.
TreeBag() - constructor for class org.apache.commons.collections.TreeBag
Constructs an empty TreeBag.
TreeBag() - constructor for class org.apache.commons.collections.bag.TreeBag
Constructs an empty TreeBag.
TreeBag(Collection) - constructor for class org.apache.commons.collections.TreeBag
Constructs a Bag containing all the members of the given collection.
TreeBag(Collection) - constructor for class org.apache.commons.collections.bag.TreeBag
Constructs a TreeBag containing all the members of the specified collection.
TreeBag(Comparator) - constructor for class org.apache.commons.collections.TreeBag
Constructs an empty Bag that maintains order on its unique representative members according to the given Comparator.
TreeBag(Comparator) - constructor for class org.apache.commons.collections.bag.TreeBag
Constructs an empty bag that maintains order on its unique representative members according to the given Comparator.
TreeBidiMap - class org.apache.commons.collections.bidimap.TreeBidiMap
Red-Black tree-based implementation of BidiMap where all objects added implement the Comparable interface.
TreeBidiMap() - constructor for class org.apache.commons.collections.bidimap.TreeBidiMap
Constructs a new empty TreeBidiMap.
TreeBidiMap(Map) - constructor for class org.apache.commons.collections.bidimap.TreeBidiMap
Constructs a new TreeBidiMap by copying an existing Map.
TreeList - class org.apache.commons.collections.list.TreeList
A List implementation that is optimised for fast insertions and removals at any index in the list.
TreeList() - constructor for class org.apache.commons.collections.list.TreeList
Constructs a new empty list.
TreeList(Collection) - constructor for class org.apache.commons.collections.list.TreeList
Constructs a new empty list that copies the specified list.
trimToSize() - method in class org.apache.commons.collections.FastArrayList
Trim the capacity of this ArrayList instance to be the list's current size.
TruePredicate - class org.apache.commons.collections.functors.TruePredicate
Predicate implementation that always returns true.
truePredicate() - static method in class org.apache.commons.collections.PredicateUtils
Gets a Predicate that always returns true.
TypedBag - class org.apache.commons.collections.bag.TypedBag
Decorates another Bag to validate that elements added are of a specific type.
TypedBag() - constructor for class org.apache.commons.collections.bag.TypedBag
Restrictive constructor.
typedBag(org.apache.commons.collections.Bag,Class) - static method in class org.apache.commons.collections.BagUtils
Returns a typed bag backed by the given bag.
TypedBuffer - class org.apache.commons.collections.buffer.TypedBuffer
Decorates another Buffer to validate that elements added are of a specific type.
TypedBuffer() - constructor for class org.apache.commons.collections.buffer.TypedBuffer
Restrictive constructor.
typedBuffer(org.apache.commons.collections.Buffer,Class) - static method in class org.apache.commons.collections.BufferUtils
Returns a typed buffer backed by the given buffer.
TypedCollection - class org.apache.commons.collections.collection.TypedCollection
Decorates a Collection to validate that elements added are of a specific type.
TypedCollection() - constructor for class org.apache.commons.collections.collection.TypedCollection
Restrictive constructor.
typedCollection(Collection,Class) - static method in class org.apache.commons.collections.CollectionUtils
Returns a typed collection backed by the given collection.
TypedList - class org.apache.commons.collections.list.TypedList
Decorates another List to validate that elements added are of a specific type.
TypedList() - constructor for class org.apache.commons.collections.list.TypedList
Restrictive constructor.
typedList(List,Class) - static method in class org.apache.commons.collections.ListUtils
Returns a typed list backed by the given list.
TypedMap - class org.apache.commons.collections.map.TypedMap
Decorates another Map to validate that elements added are of a specific type.
TypedMap() - constructor for class org.apache.commons.collections.map.TypedMap
Restrictive constructor.
typedMap(Map,Class,Class) - static method in class org.apache.commons.collections.MapUtils
Returns a typed map backed by the given map.
TypedSet - class org.apache.commons.collections.set.TypedSet
Decorates another Set to validate that elements added are of a specific type.
TypedSet() - constructor for class org.apache.commons.collections.set.TypedSet
Restrictive constructor.
typedSet(Set,Class) - static method in class org.apache.commons.collections.SetUtils
Returns a typed set backed by the given set.
TypedSortedBag - class org.apache.commons.collections.bag.TypedSortedBag
Decorates another SortedBag to validate that elements added are of a specific type.
TypedSortedBag() - constructor for class org.apache.commons.collections.bag.TypedSortedBag
Restrictive constructor.
typedSortedBag(org.apache.commons.collections.SortedBag,Class) - static method in class org.apache.commons.collections.BagUtils
Returns a typed sorted bag backed by the given bag.
TypedSortedMap - class org.apache.commons.collections.map.TypedSortedMap
Decorates another SortedMap to validate that elements added are of a specific type.
TypedSortedMap() - constructor for class org.apache.commons.collections.map.TypedSortedMap
Restrictive constructor.
typedSortedMap(SortedMap,Class,Class) - static method in class org.apache.commons.collections.MapUtils
Returns a typed sorted map backed by the given map.
TypedSortedSet - class org.apache.commons.collections.set.TypedSortedSet
Decorates another SortedSet to validate that elements added are of a specific type.
TypedSortedSet() - constructor for class org.apache.commons.collections.set.TypedSortedSet
Restrictive constructor.
typedSortedSet(SortedSet,Class) - static method in class org.apache.commons.collections.SetUtils
Returns a typed sorted set backed by the given set.

U

UnboundedFifoBuffer - class org.apache.commons.collections.UnboundedFifoBuffer
UnboundedFifoBuffer is a very efficient buffer implementation.
UnboundedFifoBuffer - class org.apache.commons.collections.buffer.UnboundedFifoBuffer
UnboundedFifoBuffer is a very efficient buffer implementation.
UnboundedFifoBuffer() - constructor for class org.apache.commons.collections.UnboundedFifoBuffer
Constructs an UnboundedFifoBuffer with the default number of elements.
UnboundedFifoBuffer() - constructor for class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Constructs an UnboundedFifoBuffer with the default number of elements.
UnboundedFifoBuffer(int) - constructor for class org.apache.commons.collections.UnboundedFifoBuffer
Constructs an UnboundedFifoBuffer with the specified number of elements.
UnboundedFifoBuffer(int) - constructor for class org.apache.commons.collections.buffer.UnboundedFifoBuffer
Constructs an UnboundedFifoBuffer with the specified number of elements.
union(Collection,Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns a Collection containing the union of the given Collections.
union(List,List) - static method in class org.apache.commons.collections.ListUtils
Returns a new list containing the second list appended to the first list.
UniqueFilterIterator - class org.apache.commons.collections.iterators.UniqueFilterIterator
A FilterIterator which only returns "unique" Objects.
UniqueFilterIterator(Iterator) - constructor for class org.apache.commons.collections.iterators.UniqueFilterIterator
Constructs a new UniqueFilterIterator.
UniquePredicate - class org.apache.commons.collections.functors.UniquePredicate
Predicate implementation that returns true the first time an object is passed into the predicate.
uniquePredicate() - static method in class org.apache.commons.collections.PredicateUtils
Creates a Predicate that returns true the first time an object is encountered, and false if the same object is received again.
UniquePredicate() - constructor for class org.apache.commons.collections.functors.UniquePredicate
Constructor that performs no validation.
uniqueSet() - method in class org.apache.commons.collections.bag.AbstractBagDecorator
uniqueSet() - method in class org.apache.commons.collections.bag.AbstractMapBag
Returns an unmodifiable view of the underlying map's key set.
uniqueSet() - method in class org.apache.commons.collections.Bag
Returns a Set of unique elements in the Bag.
uniqueSet() - method in class org.apache.commons.collections.DefaultMapBag
Returns an unmodifiable view of the underlying map's key set.
uniqueSet() - method in class org.apache.commons.collections.bag.PredicatedBag
Returns a Set of unique elements in the Bag.
uniqueSet() - method in class org.apache.commons.collections.bag.SynchronizedBag
uniqueSet() - method in class org.apache.commons.collections.bag.TransformedBag
Returns a Set of unique elements in the Bag.
uniqueSet() - method in class org.apache.commons.collections.bag.UnmodifiableBag
uniqueSet() - method in class org.apache.commons.collections.bag.UnmodifiableSortedBag
UNKNOWN_AFTER - static field in class org.apache.commons.collections.comparators.FixedOrderComparator
Behavior when comparing unknown Objects: unknown objects compare as after known Objects.
UNKNOWN_BEFORE - static field in class org.apache.commons.collections.comparators.FixedOrderComparator
Behavior when comparing unknown Objects: unknown objects compare as before known Objects.
UNKNOWN_THROW_EXCEPTION - static field in class org.apache.commons.collections.comparators.FixedOrderComparator
Behavior when comparing unknown Objects: unknown objects cause a IllegalArgumentException to be thrown.
Unmodifiable - interface org.apache.commons.collections.Unmodifiable
Marker interface for collections, maps and iterators that are unmodifiable.
UnmodifiableBag - class org.apache.commons.collections.bag.UnmodifiableBag
Decorates another Bag to ensure it can't be altered.
unmodifiableBag(org.apache.commons.collections.Bag) - static method in class org.apache.commons.collections.BagUtils
Returns an unmodifiable view of the given bag.
UnmodifiableBidiMap - class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
Decorates another BidiMap to ensure it can't be altered.
UnmodifiableBoundedCollection - class org.apache.commons.collections.collection.UnmodifiableBoundedCollection
UnmodifiableBoundedCollection decorates another BoundedCollection to ensure it can't be altered.
UnmodifiableBuffer - class org.apache.commons.collections.buffer.UnmodifiableBuffer
Decorates another Buffer to ensure it can't be altered.
unmodifiableBuffer(org.apache.commons.collections.Buffer) - static method in class org.apache.commons.collections.BufferUtils
Returns an unmodifiable buffer backed by the given buffer.
UnmodifiableCollection - class org.apache.commons.collections.collection.UnmodifiableCollection
Decorates another Collection to ensure it can't be altered.
unmodifiableCollection(Collection) - static method in class org.apache.commons.collections.CollectionUtils
Returns an unmodifiable collection backed by the given collection.
UnmodifiableEntrySet - class org.apache.commons.collections.map.UnmodifiableEntrySet
Decorates a map entry Set to ensure it can't be altered.
UnmodifiableIterator - class org.apache.commons.collections.iterators.UnmodifiableIterator
Decorates an iterator such that it cannot be modified.
unmodifiableIterator(Iterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an immutable version of an Iterator.
UnmodifiableList - class org.apache.commons.collections.list.UnmodifiableList
Decorates another List to ensure it can't be altered.
unmodifiableList(List) - static method in class org.apache.commons.collections.ListUtils
Returns an unmodifiable list backed by the given list.
UnmodifiableListIterator - class org.apache.commons.collections.iterators.UnmodifiableListIterator
Decorates a list iterator such that it cannot be modified.
unmodifiableListIterator(ListIterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an immutable version of a ListIterator.
UnmodifiableMap - class org.apache.commons.collections.map.UnmodifiableMap
Decorates another Map to ensure it can't be altered.
unmodifiableMap(Map) - static method in class org.apache.commons.collections.MapUtils
Returns an unmodifiable map backed by the given map.
UnmodifiableMapEntry - class org.apache.commons.collections.keyvalue.UnmodifiableMapEntry
A java.util.Map.Entry that throws UnsupportedOperationException when setValue is called.
UnmodifiableMapEntry(Map.Entry) - constructor for class org.apache.commons.collections.keyvalue.UnmodifiableMapEntry
Constructs a new entry from the specified MapEntry.
UnmodifiableMapEntry(Object,Object) - constructor for class org.apache.commons.collections.keyvalue.UnmodifiableMapEntry
Constructs a new entry with the specified key and given value.
UnmodifiableMapEntry(org.apache.commons.collections.KeyValue) - constructor for class org.apache.commons.collections.keyvalue.UnmodifiableMapEntry
Constructs a new entry from the specified KeyValue.
UnmodifiableMapIterator - class org.apache.commons.collections.iterators.UnmodifiableMapIterator
Decorates a map iterator such that it cannot be modified.
unmodifiableMapIterator(org.apache.commons.collections.MapIterator) - static method in class org.apache.commons.collections.IteratorUtils
Gets an immutable version of a MapIterator.
UnmodifiableOrderedBidiMap - class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
Decorates another OrderedBidiMap to ensure it can't be altered.
UnmodifiableOrderedMap - class org.apache.commons.collections.map.UnmodifiableOrderedMap
Decorates another OrderedMap to ensure it can't be altered.
UnmodifiableOrderedMapIterator - class org.apache.commons.collections.iterators.UnmodifiableOrderedMapIterator
Decorates an ordered map iterator such that it cannot be modified.
UnmodifiableSet - class org.apache.commons.collections.set.UnmodifiableSet
Decorates another Set to ensure it can't be altered.
unmodifiableSet(Set) - static method in class org.apache.commons.collections.SetUtils
Returns an unmodifiable set backed by the given set.
UnmodifiableSortedBag - class org.apache.commons.collections.bag.UnmodifiableSortedBag
Decorates another SortedBag to ensure it can't be altered.
unmodifiableSortedBag(org.apache.commons.collections.SortedBag) - static method in class org.apache.commons.collections.BagUtils
Returns an unmodifiable view of the given sorted bag.
UnmodifiableSortedBidiMap - class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
Decorates another SortedBidiMap to ensure it can't be altered.
UnmodifiableSortedMap - class org.apache.commons.collections.map.UnmodifiableSortedMap
Decorates another SortedMap to ensure it can't be altered.
unmodifiableSortedMap(SortedMap) - static method in class org.apache.commons.collections.MapUtils
Returns an unmodifiable sorted map backed by the given sorted map.
UnmodifiableSortedSet - class org.apache.commons.collections.set.UnmodifiableSortedSet
Decorates another SortedSet to ensure it can't be altered.
unmodifiableSortedSet(SortedSet) - static method in class org.apache.commons.collections.SetUtils
Returns an unmodifiable sorted set backed by the given sorted set.
Removes a CursorableLinkedList.Cursor from the set of cursors to be notified of changes to this list.
Deregisters a cursor from the list to be notified of changes.
updateCurrentIterator() - method in class org.apache.commons.collections.iterators.IteratorChain
Updates the current iterator field to ensure that the current Iterator is not exhausted
updateCurrentIterator() - method in class org.apache.commons.collections.iterators.ObjectGraphIterator
Loops around the iterators to find the next value to return.
Updates an existing key-value mapping to change the value.
Updates an existing key-value mapping.
Updates the node with a new value.
Updates the node with a new value.

V

validate(Object) - method in class org.apache.commons.collections.collection.PredicatedCollection
Validates the object being added to ensure it matches the predicate.
validate(Object,Object) - method in class org.apache.commons.collections.map.PredicatedMap
Validates a key value pair.
value - field in class org.apache.commons.collections.map.AbstractHashedMap.HashEntry
The value
value - field in class org.apache.commons.collections.keyvalue.AbstractKeyValue
The value
value - field in class org.apache.commons.collections.list.AbstractLinkedList.Node
The object contained within this node
value - field in class org.apache.commons.collections.bag.AbstractMapBag.MutableInteger
The value of this mutable.
valueIterator() - method in class org.apache.commons.collections.BeanMap
Convenience method for getting an iterator over the values.
valuePredicate - field in class org.apache.commons.collections.map.PredicatedMap
The value predicate to use
AbstractDualBidiMap.Values - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.Values
Inner class Values.
AbstractHashedMap.Values - class org.apache.commons.collections.map.AbstractHashedMap.Values
Values implementation.
values() - method in class org.apache.commons.collections.bidimap.AbstractDualBidiMap
Gets a values view of the map.
values() - method in class org.apache.commons.collections.map.AbstractHashedMap
Gets the values view of the map.
values() - method in class org.apache.commons.collections.map.AbstractMapDecorator
values() - method in class org.apache.commons.collections.map.AbstractReferenceMap
Returns a collection view of this map's values.
values() - method in class org.apache.commons.collections.BeanMap
Returns the values for the BeanMap.
values() - method in class org.apache.commons.collections.map.CompositeMap
Returns a collection view of the values contained in this map.
values() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a collection view of the values contained in this map.
values() - method in class org.apache.commons.collections.FastHashMap
Return a collection view of the values contained in this map.
values() - method in class org.apache.commons.collections.FastTreeMap
Return a collection view of the values contained in this map.
values() - method in class org.apache.commons.collections.map.FixedSizeMap
values() - method in class org.apache.commons.collections.map.FixedSizeSortedMap
values() - method in class org.apache.commons.collections.map.Flat3Map
Gets the values view of the map.
values() - method in class org.apache.commons.collections.map.ListOrderedMap
values() - method in class org.apache.commons.collections.MultiHashMap
Gets a collection containing all the values in the map.
values() - method in class org.apache.commons.collections.map.MultiKeyMap
values() - method in class org.apache.commons.collections.MultiMap
Gets a collection containing all the values in the map.
values() - method in class org.apache.commons.collections.ProxyMap
Invokes the underlying Map.values() method.
values() - method in class org.apache.commons.collections.ReferenceMap
Returns a collection view of this map's values.
values() - method in class org.apache.commons.collections.SequencedHashMap
Implements Map.values().
values() - method in class org.apache.commons.collections.map.SingletonMap
Gets the unmodifiable values view of the map.
values() - method in class org.apache.commons.collections.StaticBucketMap
Implements Map.values().
values() - method in class org.apache.commons.collections.map.StaticBucketMap
Gets the values.
values() - method in class org.apache.commons.collections.bidimap.TreeBidiMap
Returns a set view of the values contained in this map in key order.
values() - method in class org.apache.commons.collections.bidimap.UnmodifiableBidiMap
values() - method in class org.apache.commons.collections.map.UnmodifiableMap
values() - method in class org.apache.commons.collections.bidimap.UnmodifiableOrderedBidiMap
values() - method in class org.apache.commons.collections.map.UnmodifiableOrderedMap
values() - method in class org.apache.commons.collections.bidimap.UnmodifiableSortedBidiMap
values() - method in class org.apache.commons.collections.map.UnmodifiableSortedMap
Values(org.apache.commons.collections.bidimap.AbstractDualBidiMap) - constructor for class org.apache.commons.collections.bidimap.AbstractDualBidiMap.Values
Constructs a new view of the BidiMap.
Values(org.apache.commons.collections.map.AbstractHashedMap) - constructor for class org.apache.commons.collections.map.AbstractHashedMap.Values
valuesByValue() - method in class org.apache.commons.collections.DoubleOrderedMap
Returns a collection view of the values contained in this map.
AbstractDualBidiMap.ValuesIterator - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.ValuesIterator
Inner class ValuesIterator.
AbstractHashedMap.ValuesIterator - class org.apache.commons.collections.map.AbstractHashedMap.ValuesIterator
Values iterator.
AbstractLinkedMap.ValuesIterator - class org.apache.commons.collections.map.AbstractLinkedMap.ValuesIterator
Values iterator.
Constructor.
valueTransformer - field in class org.apache.commons.collections.map.TransformedMap
The transformer to use for the value
valueType - field in class org.apache.commons.collections.map.AbstractReferenceMap
The reference type for values.
verbosePrint(PrintStream,Object,Map) - static method in class org.apache.commons.collections.MapUtils
Prints the given map with nice line breaks.
AbstractDualBidiMap.View - class org.apache.commons.collections.bidimap.AbstractDualBidiMap.View
Inner class View.
Constructs a new view of the BidiMap.
DualTreeBidiMap.ViewMap - class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
Internal sorted map view.
ViewMap(org.apache.commons.collections.bidimap.DualTreeBidiMap,SortedMap) - constructor for class org.apache.commons.collections.bidimap.DualTreeBidiMap.ViewMap
Constructor.

W

WEAK - static field in class org.apache.commons.collections.map.AbstractReferenceMap
Constant indicating that weak references should be used
WEAK - static field in class org.apache.commons.collections.ReferenceMap
Constant indicating that weak references should be used.
WhileClosure - class org.apache.commons.collections.functors.WhileClosure
Closure implementation that executes a closure repeatedly until a condition is met, like a do-while or while loop.
Creates a Closure that will call the closure repeatedly until the predicate returns false.
Constructor that performs no validation.
writeExternal(ObjectOutput) - method in class org.apache.commons.collections.LRUMap
Serializes this map to the given stream.
writeExternal(ObjectOutput) - method in class org.apache.commons.collections.SequencedHashMap
Serializes this map to the given stream.

Copyright © 2001-2006 Apache Software Foundation. All Rights Reserved.