Package org.codehaus.commons.compiler.util.iterator
-
Class Summary Class Description DirectoryIterator AnIterator<File>that finds regular files who's names areacceptedby the fileNameFilter and exist in the given rootDirectory, or exist in any subdirectory of the rootDirectory that isacceptedby the directoryNameFilter.EnumerationIterator<T> AnIteratorthat iterates over the elements of anEnumeration.FilterListIterator<T> AnListIteratorthat retrieves its elements from a delegateListIterator.Iterables IteratorCollection<T> ACollectionthat lazily reads its elements from anIterator.MultiDimensionalIterator<T> AnIteratorthat iterates over a delegate, which produces arrays,Collections,Enumerations orIterators.MultiIterator<T> ProducerIterator<T> ReverseListIterator<T> AListIteratorthat reverses the direction of all operations of a delegateListIterator.TransformingIterator<T1,T2> AnIteratorthat transforms its elements on-the-fly.TraversingIterator AnIteratorthat iterates over a delegate, and while it encounters an array, aCollection, anEnumerationor aIteratorelement, it iterates over it recursively. -
Exception Summary Exception Description DirectoryIterator.DirectoryNotListableException Indicates thatFile.listFiles()returnednullfor a particular directory.UniterableElementException Thrown byMultiDimensionalIteratorto indicate that it has encountered an element that cannot be iterated.