Class IntSingletonIterator

  • All Implemented Interfaces:
    IntIterator

    public class IntSingletonIterator
    extends Object
    implements IntIterator
    An iterator over a single integer
    • Field Detail

      • gone

        boolean gone
    • Constructor Detail

      • IntSingletonIterator

        public IntSingletonIterator​(int value)
    • Method Detail

      • hasNext

        public boolean hasNext()
        Description copied from interface: IntIterator
        Test whether there are any more integers in the sequence
        Specified by:
        hasNext in interface IntIterator
        Returns:
        true if there are more integers to come
      • next

        public int next()
        Description copied from interface: IntIterator
        Return the next integer in the sequence. The result is undefined unless hasNext() has been called and has returned true.
        Specified by:
        next in interface IntIterator
        Returns:
        the next integer in the sequence