Class CollectionSizedIterator<OBJECTT>

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

    public class CollectionSizedIterator<OBJECTT>
    extends Object
    implements SizedIterator<OBJECTT>
    Iterator on collection.
    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

      • CollectionSizedIterator

        public CollectionSizedIterator​(Collection<OBJECTT> collection)
        Construct an iterator.
        Parameters:
        collection - the collection to iterate 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<OBJECTT>
        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<OBJECTT>
        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<OBJECTT>
        Returns:
        the count of elements which are not replied by the iterator.