Class ArraySizedIterator<OBJECT>

  • Type Parameters:
    OBJECT - is the type of the objects to iterator on.
    All Implemented Interfaces:
    Iterator<OBJECT>, SizedIterator<OBJECT>

    public class ArraySizedIterator<OBJECT>
    extends Object
    implements SizedIterator<OBJECT>
    Iterator which is disabling the remove() function.
    Version:
    17.0 2020-01-04 14:41:38
    Author:
    Stéphane GALLAND
    Maven Group Id:
    org.arakhne.afc.core
    Maven Artifact Id:
    util
    • Constructor Detail

      • ArraySizedIterator

        public ArraySizedIterator​(OBJECT[] array)
        Construct an iterator.
        Parameters:
        array - the array to iterator on.
    • Method Detail

      • index

        @Pure
        public int index()
        Description copied from interface: SizedIterator
        Replies the position of the last replied element in the iterated collection.
        Specified by:
        index in interface SizedIterator<OBJECT>
        Returns:
        the index of the last element replied by next().
      • totalSize

        @Pure
        public int totalSize()
        Description copied from interface: SizedIterator
        Replies the count of elements in the iterated collection.
        Specified by:
        totalSize in interface SizedIterator<OBJECT>
        Returns:
        the count of elements in the iterated collection.
      • rest

        @Pure
        public int rest()
        Description copied from interface: SizedIterator
        Replies the count of elements which are not replied by the iterator.
        Specified by:
        rest in interface SizedIterator<OBJECT>
        Returns:
        the count of elements which are not replied by the iterator.