Class MultiIterator<T>

  • All Implemented Interfaces:
    java.util.Iterator<T>

    @Deprecated(since="2021-07-29")
    public final class MultiIterator<T>
    extends java.lang.Object
    implements java.util.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 Summary

      Constructors 
      Constructor Description
      MultiIterator​(java.lang.Iterable<java.util.Iterator<T>> i)
      Deprecated.
       
      MultiIterator​(java.util.Iterator<java.util.Iterator<T>> iterators)
      Deprecated.
       
      MultiIterator​(java.util.Iterator<T>... iterators)
      Deprecated.
       
    • Method Summary

      All Methods Instance Methods Concrete Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean hasNext()
      Deprecated.
       
      T next()
      Deprecated.
       
      void remove()
      Deprecated.
       
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Iterator

        forEachRemaining
    • Constructor Detail

      • MultiIterator

        public MultiIterator​(java.lang.Iterable<java.util.Iterator<T>> i)
        Deprecated.
      • MultiIterator

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

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

      • hasNext

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

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

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