Class GridView.ItemsIterator<T>

  • Type Parameters:
    T -
    All Implemented Interfaces:
    java.util.Iterator<Item<T>>
    Enclosing class:
    GridView<T>

    public static class GridView.ItemsIterator<T>
    extends java.lang.Object
    implements java.util.Iterator<Item<T>>
    Iterator that iterates over all items in the cells
    Author:
    igor
    • Method Summary

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

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

        forEachRemaining
    • Constructor Detail

      • ItemsIterator

        public ItemsIterator​(java.util.Iterator<MarkupContainer> rows)
        Parameters:
        rows - iterator over child row views
    • Method Detail

      • remove

        public void remove()
        Specified by:
        remove in interface java.util.Iterator<T>
        See Also:
        Iterator.remove()
      • hasNext

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

        public Item<T> next()
        Specified by:
        next in interface java.util.Iterator<T>
        See Also:
        Iterator.next()