Class CollectionIteration<E,​X extends java.lang.Exception>

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.Collection<E> collection  
      protected java.util.Iterator<E> iterator  
    • Constructor Summary

      Constructors 
      Constructor Description
      CollectionIteration​(java.util.Collection<E> collection)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()
      Returns true if the iteration has more elements.
      E next()
      Returns the next element in the iteration.
      void remove()
      Removes from the underlying collection the last element returned by the iteration (optional operation).
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • collection

        protected final java.util.Collection<E> collection
      • iterator

        protected java.util.Iterator<E> iterator
    • Constructor Detail

      • CollectionIteration

        public CollectionIteration​(java.util.Collection<E> collection)
        Parameters:
        collection -
    • Method Detail

      • hasNext

        public boolean hasNext()
                        throws X extends java.lang.Exception
        Description copied from interface: Iteration
        Returns true if the iteration has more elements. (In other words, returns true if Iteration.next() would return an element rather than throwing a NoSuchElementException.)
        Returns:
        true if the iteration has more elements.
        Throws:
        X
        X extends java.lang.Exception
      • next

        public E next()
               throws X extends java.lang.Exception
        Description copied from interface: Iteration
        Returns the next element in the iteration.
        Returns:
        the next element in the iteration.
        Throws:
        X extends java.lang.Exception
      • remove

        public void remove()
                    throws X extends java.lang.Exception
        Description copied from interface: Iteration
        Removes from the underlying collection the last element returned by the iteration (optional operation). This method can be called only once per call to next.
        Throws:
        X extends java.lang.Exception