Java com.mongodb.client FindIterable fields, constructors, methods, implement or subclass

Example usage for Java com.mongodb.client FindIterable fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.mongodb.client FindIterable.

The text is from its open source code.

Implementation

com.mongodb.client.FindIterable has the following implementations.
Click this link to see all its implementation.

Constructor

Method

FindIterablebatchSize(int batchSize)
Sets the number of documents to return per batch.
FindIterablecollation(@Nullable Collation collation)
Sets the collation options

A null value represents the server default.

FindIterablefilter(@Nullable Bson filter)
Sets the query filter to apply to the query.
FindIterablelimit(int limit)
Sets the limit to apply.
FindIterablemaxTime(long maxTime, TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.
FindIterableprojection(@Nullable Bson projection)
Sets a document describing the fields to return for all matching documents.
FindIterableskip(int skip)
Sets the number of documents to skip.
FindIterablesort(@Nullable Bson sort)
Sets the sort criteria to apply to the query.