Class MultiIterator<T>

  • All Implemented Interfaces:
    Iterator<T>

    @Deprecated(since="2021-07-29")
    public final class MultiIterator<T>
    extends Object
    implements Iterator<T>
    Deprecated.
    This API is deprecated as Apache Abdera is a retired project since 2017.
    Iterator implementation that wraps multiple iterators and invokes them in sequence.
    • Constructor Detail

      • MultiIterator

        public MultiIterator​(Iterator<T>... iterators)
        Deprecated.
      • MultiIterator

        public MultiIterator​(Iterator<Iterator<T>> iterators)
        Deprecated.
    • Method Detail

      • hasNext

        public boolean hasNext()
        Deprecated.
        Specified by:
        hasNext in interface Iterator<T>
      • next

        public T next()
        Deprecated.
        Specified by:
        next in interface Iterator<T>
      • remove

        public void remove()
        Deprecated.
        Specified by:
        remove in interface Iterator<T>