Uses of Interface
com.helger.commons.collection.iterate.IIterableIterator
Packages that use IIterableIterator
Package
Description
-
Uses of IIterableIterator in com.helger.commons.collection
Methods in com.helger.commons.collection that return IIterableIteratorModifier and TypeMethodDescriptionstatic <ELEMENTTYPE>
IIterableIterator<ELEMENTTYPE> IteratorHelper.getIterator(Enumeration<? extends ELEMENTTYPE> aEnum) Methods in com.helger.commons.collection with parameters of type IIterableIteratorModifier and TypeMethodDescriptionstatic 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 IIterableIteratorModifier and TypeMethodDescriptiondefault IIterableIterator<ELEMENTTYPE> ICommonsCollection.iterator2() -
Uses of IIterableIterator in com.helger.commons.collection.iterate
Classes in com.helger.commons.collection.iterate that implement IIterableIteratorModifier and TypeClassDescriptionfinal 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 IIterableIteratorModifier and TypeMethodDescriptionstatic <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 IIterableIteratorModifierConstructorDescriptionFilterIterator(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 IIterableIteratorModifier and TypeClassDescriptionfinal classIterate over the content of a single directory.classRecursively iterate the content of a file system directory. -
Uses of IIterableIterator in com.helger.commons.math
Classes in com.helger.commons.math that implement IIterableIteratorModifier and TypeClassDescriptionclassCombinationGenerator<DATATYPE>Utility class for generating all possible combinations of elements for a specified number of available slots.