Class IteratorUtil


  • public class IteratorUtil
    extends Object
    Util (general purpose) methods dealing with Iterator.

    Adapted from https://code.google.com/p/treelayout/ to be available to GWT clients

    • Constructor Detail

      • IteratorUtil

        public IteratorUtil()
    • Method Detail

      • createReverseIterator

        public static <T> Iterator<T> createReverseIterator​(List<T> list)
        Returns an Iterator iterating the given list from the end to the start.

        I.e. the iterator does the reverse of the List.iterator().

        Type Parameters:
        T -
        Parameters:
        list -
        Returns:
        a reverse Iterator of the list