Class HnswGraph.NodesIterator

  • All Implemented Interfaces:
    java.util.Iterator<java.lang.Integer>, java.util.PrimitiveIterator<java.lang.Integer,​java.util.function.IntConsumer>, java.util.PrimitiveIterator.OfInt
    Enclosing class:
    HnswGraph

    public static final class HnswGraph.NodesIterator
    extends java.lang.Object
    implements java.util.PrimitiveIterator.OfInt
    Iterator over the graph nodes on a certain level, Iterator also provides the size – the total number of nodes to be iterated over.
    • Nested Class Summary

      • Nested classes/interfaces inherited from interface java.util.PrimitiveIterator

        java.util.PrimitiveIterator.OfDouble, java.util.PrimitiveIterator.OfInt, java.util.PrimitiveIterator.OfLong
    • Constructor Summary

      Constructors 
      Constructor Description
      NodesIterator​(int size)
      Constructor for iterator based on the size
      NodesIterator​(int[] nodes, int size)
      Constructor for iterator based on the nodes array up to the size
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean hasNext()  
      int nextInt()  
      int size()
      The number of elements in this iterator *
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • Methods inherited from interface java.util.Iterator

        remove
      • Methods inherited from interface java.util.PrimitiveIterator.OfInt

        forEachRemaining, forEachRemaining, next
    • Constructor Detail

      • NodesIterator

        public NodesIterator​(int[] nodes,
                             int size)
        Constructor for iterator based on the nodes array up to the size
      • NodesIterator

        public NodesIterator​(int size)
        Constructor for iterator based on the size
    • Method Detail

      • nextInt

        public int nextInt()
        Specified by:
        nextInt in interface java.util.PrimitiveIterator.OfInt
      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<java.lang.Integer>
      • size

        public int size()
        The number of elements in this iterator *