Class LinkedPairGenerator<E>

  • All Implemented Interfaces:
    PairGenerator<E>

    public class LinkedPairGenerator<E>
    extends Object
    implements PairGenerator<E>
    Creates Pairs from the given list where each element is linked to the next one in the list. The end of the list is connected to the beginning.
    • Constructor Detail

      • LinkedPairGenerator

        public LinkedPairGenerator​(List<E> elements)
    • Method Detail

      • next

        public org.apache.commons.lang3.tuple.Pair<E,​E> next()
        Specified by:
        next in interface PairGenerator<E>