FindIterable<T> |
FindIterable.batchSize(int batchSize) |
Deprecated.
Sets the number of documents to return per batch.
|
FindIterable<T> |
FindIterable.collation(Collation collation) |
Deprecated.
Sets the collation options
|
FindIterable<T> |
FindIterable.comment(String comment) |
Deprecated.
Sets the comment to the query.
|
FindIterable<T> |
FindIterable.cursorType(CursorType cursorType) |
Deprecated.
Sets the cursor type.
|
FindIterable<T> |
FindIterable.filter(Bson filter) |
Deprecated.
Sets the query filter to apply to the query.
|
FindIterable<TDocument> |
MongoCollection.find() |
Deprecated.
Finds all documents in the collection.
|
FindIterable<TDocument> |
MongoCollection.find(ClientSession clientSession) |
Deprecated.
Finds all documents in the collection.
|
<TResult> FindIterable<TResult> |
MongoCollection.find(ClientSession clientSession,
Class<TResult> resultClass) |
Deprecated.
Finds all documents in the collection.
|
FindIterable<TDocument> |
MongoCollection.find(ClientSession clientSession,
Bson filter) |
Deprecated.
Finds all documents in the collection.
|
<TResult> FindIterable<TResult> |
MongoCollection.find(ClientSession clientSession,
Bson filter,
Class<TResult> resultClass) |
Deprecated.
Finds all documents in the collection.
|
<TResult> FindIterable<TResult> |
MongoCollection.find(Class<TResult> resultClass) |
Deprecated.
Finds all documents in the collection.
|
FindIterable<TDocument> |
MongoCollection.find(Bson filter) |
Deprecated.
Finds all documents in the collection.
|
<TResult> FindIterable<TResult> |
MongoCollection.find(Bson filter,
Class<TResult> resultClass) |
Deprecated.
Finds all documents in the collection.
|
FindIterable<T> |
FindIterable.hint(Bson hint) |
Deprecated.
Sets the hint for which index to use.
|
FindIterable<T> |
FindIterable.limit(int limit) |
Deprecated.
Sets the limit to apply.
|
FindIterable<T> |
FindIterable.max(Bson max) |
Deprecated.
Sets the exclusive upper bound for a specific index.
|
FindIterable<T> |
FindIterable.maxAwaitTime(long maxAwaitTime,
TimeUnit timeUnit) |
Deprecated.
The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor
query.
|
FindIterable<T> |
FindIterable.maxScan(long maxScan) |
Deprecated.
|
FindIterable<T> |
FindIterable.maxTime(long maxTime,
TimeUnit timeUnit) |
Deprecated.
Sets the maximum execution time on the server for this operation.
|
FindIterable<T> |
FindIterable.min(Bson min) |
Deprecated.
Sets the minimum inclusive lower bound for a specific index.
|
FindIterable<T> |
FindIterable.modifiers(Bson modifiers) |
Deprecated.
|
FindIterable<T> |
FindIterable.noCursorTimeout(boolean noCursorTimeout) |
Deprecated.
The server normally times out idle cursors after an inactivity period (10 minutes)
to prevent excess memory use.
|
FindIterable<T> |
FindIterable.oplogReplay(boolean oplogReplay) |
Deprecated.
Users should not set this under normal circumstances.
|
FindIterable<T> |
FindIterable.partial(boolean partial) |
Deprecated.
Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).
|
FindIterable<T> |
FindIterable.projection(Bson projection) |
Deprecated.
Sets a document describing the fields to return for all matching documents.
|
FindIterable<T> |
FindIterable.returnKey(boolean returnKey) |
Deprecated.
Sets the returnKey.
|
FindIterable<T> |
FindIterable.showRecordId(boolean showRecordId) |
Deprecated.
Sets the showRecordId.
|
FindIterable<T> |
FindIterable.skip(int skip) |
Deprecated.
Sets the number of documents to skip.
|
FindIterable<T> |
FindIterable.snapshot(boolean snapshot) |
Deprecated.
|
FindIterable<T> |
FindIterable.sort(Bson sort) |
Deprecated.
Sets the sort criteria to apply to the query.
|