Class FakeMongoCursor<T>

  • All Implemented Interfaces:
    com.mongodb.client.MongoCursor, java.io.Closeable, java.lang.AutoCloseable, java.util.Iterator

    public class FakeMongoCursor<T>
    extends java.lang.Object
    implements com.mongodb.client.MongoCursor
    • Constructor Summary

      Constructors 
      Constructor Description
      FakeMongoCursor​(java.util.List<T> iterator)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void close()  
      com.mongodb.ServerAddress getServerAddress()  
      com.mongodb.ServerCursor getServerCursor()  
      boolean hasNext()  
      java.lang.Object next()  
      java.lang.Object tryNext()  
      • 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

        forEachRemaining, remove
    • Constructor Detail

      • FakeMongoCursor

        public FakeMongoCursor​(java.util.List<T> iterator)
    • Method Detail

      • close

        public void close()
        Specified by:
        close in interface java.lang.AutoCloseable
        Specified by:
        close in interface java.io.Closeable
        Specified by:
        close in interface com.mongodb.client.MongoCursor<T>
      • hasNext

        public boolean hasNext()
        Specified by:
        hasNext in interface java.util.Iterator<T>
        Specified by:
        hasNext in interface com.mongodb.client.MongoCursor<T>
      • next

        public java.lang.Object next()
        Specified by:
        next in interface java.util.Iterator<T>
        Specified by:
        next in interface com.mongodb.client.MongoCursor<T>
      • tryNext

        public java.lang.Object tryNext()
        Specified by:
        tryNext in interface com.mongodb.client.MongoCursor<T>
      • getServerCursor

        public com.mongodb.ServerCursor getServerCursor()
        Specified by:
        getServerCursor in interface com.mongodb.client.MongoCursor<T>
      • getServerAddress

        public com.mongodb.ServerAddress getServerAddress()
        Specified by:
        getServerAddress in interface com.mongodb.client.MongoCursor<T>