Uses of Interface
com.helger.commons.collection.iterate.IIterableIterator
-
Packages that use IIterableIterator Package Description com.helger.commons.collection com.helger.commons.collection.impl com.helger.commons.collection.iterate com.helger.commons.io.file com.helger.commons.math -
-
Uses of IIterableIterator in com.helger.commons.collection
Methods in com.helger.commons.collection that return IIterableIterator Modifier and Type Method Description static <ELEMENTTYPE>
IIterableIterator<ELEMENTTYPE>IteratorHelper. getIterator(Enumeration<? extends ELEMENTTYPE> aEnum)Methods in com.helger.commons.collection with parameters of type IIterableIterator Modifier and Type Method Description static intIteratorHelper. getSize(IIterableIterator<?> aIterator)Retrieve the size of the passedIterable.static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsArrayList<ELEMENTTYPE>CollectionHelper. getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter)Convert the given iterator to a sorted list.static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsArrayList<ELEMENTTYPE>CollectionHelper. getSorted(IIterableIterator<? extends ELEMENTTYPE> aIter, Comparator<? super ELEMENTTYPE> aComparator)Convert the given iterator to a sorted list.static booleanIteratorHelper. isEmpty(IIterableIterator<?> aIter)static booleanIteratorHelper. isNotEmpty(IIterableIterator<?> aIter)static <ELEMENTTYPE>
CommonsArrayList<ELEMENTTYPE>CollectionHelper. newList(IIterableIterator<? extends ELEMENTTYPE> aIter)static <ELEMENTTYPE>
CommonsLinkedHashSet<ELEMENTTYPE>CollectionHelper. newOrderedSet(IIterableIterator<? extends ELEMENTTYPE> aIter)static <ELEMENTTYPE>
CommonsHashSet<ELEMENTTYPE>CollectionHelper. newSet(IIterableIterator<? extends ELEMENTTYPE> aIter)static <ELEMENTTYPE extends Comparable<? super ELEMENTTYPE>>
CommonsTreeSet<ELEMENTTYPE>CollectionHelper. newSortedSet(IIterableIterator<? extends ELEMENTTYPE> aIter) -
Uses of IIterableIterator in com.helger.commons.collection.impl
Methods in com.helger.commons.collection.impl that return IIterableIterator Modifier and Type Method Description default IIterableIterator<ELEMENTTYPE>ICommonsCollection. iterator2() -
Uses of IIterableIterator in com.helger.commons.collection.iterate
Classes in com.helger.commons.collection.iterate that implement IIterableIterator Modifier and Type Class Description classArrayIterator<ELEMENTTYPE>This is a small helper class for iterating over arrays.classFilterIterator<ELEMENTTYPE>A simple filter iterator that takes a base iterator and an additional filter and returns only the items that match the filter.classIterableIterator<ELEMENTTYPE>This class is used for simpler iteration over an Iterator via the new "for" syntax.classIterableIteratorFromEnumeration<ELEMENTTYPE>Create an iterable iterator from an existing enumeration.classMapperIterator<SRCTYPE,ELEMENTTYPE>A simple iterator that changes the object type from a source type to a destination type.Methods in com.helger.commons.collection.iterate that return IIterableIterator Modifier and Type Method Description static <ELEMENTTYPE>
IIterableIterator<ELEMENTTYPE>IterableIterator. createEmpty()default IIterableIterator<ELEMENTTYPE>IIterableIterator. withFilter(Predicate<? super ELEMENTTYPE> aFilter)default <DSTTYPE> IIterableIterator<DSTTYPE>IIterableIterator. withMapper(Function<? super ELEMENTTYPE,? extends DSTTYPE> aMapper)Constructors in com.helger.commons.collection.iterate with parameters of type IIterableIterator Constructor Description FilterIterator(IIterableIterator<? extends ELEMENTTYPE> aBaseIter, Predicate<? super ELEMENTTYPE> aFilter)Constructor.MapperIterator(IIterableIterator<? extends SRCTYPE> aBaseIter, Function<? super SRCTYPE,? extends ELEMENTTYPE> aConverter)Constructor. -
Uses of IIterableIterator in com.helger.commons.io.file
Classes in com.helger.commons.io.file that implement IIterableIterator Modifier and Type Class Description classFileSystemIteratorIterate over the content of a single directory.classFileSystemRecursiveIteratorRecursively iterate the content of a file system directory. -
Uses of IIterableIterator in com.helger.commons.math
Classes in com.helger.commons.math that implement IIterableIterator Modifier and Type Class Description classCombinationGenerator<DATATYPE>Utility class for generating all possible combinations of elements for a specified number of available slots.
-