Package com.mongodb.client
Interface FindIterable<TResult>
-
- Type Parameters:
TResult- The type of the result.
- All Superinterfaces:
Iterable<TResult>,MongoIterable<TResult>
public interface FindIterable<TResult> extends MongoIterable<TResult>
Iterable for find.- Since:
- 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description FindIterable<TResult>batchSize(int batchSize)Sets the number of documents to return per batch.FindIterable<TResult>collation(Collation collation)Sets the collation optionsFindIterable<TResult>comment(String comment)Sets the comment to the query.FindIterable<TResult>cursorType(CursorType cursorType)Sets the cursor type.FindIterable<TResult>filter(Bson filter)Sets the query filter to apply to the query.FindIterable<TResult>hint(Bson hint)Sets the hint for which index to use.FindIterable<TResult>hintString(String hint)Sets the hint to apply.FindIterable<TResult>limit(int limit)Sets the limit to apply.FindIterable<TResult>max(Bson max)Sets the exclusive upper bound for a specific index.FindIterable<TResult>maxAwaitTime(long maxAwaitTime, TimeUnit timeUnit)The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query.FindIterable<TResult>maxScan(long maxScan)Deprecated.Deprecated as of MongoDB 4.0 releaseFindIterable<TResult>maxTime(long maxTime, TimeUnit timeUnit)Sets the maximum execution time on the server for this operation.FindIterable<TResult>min(Bson min)Sets the minimum inclusive lower bound for a specific index.FindIterable<TResult>modifiers(Bson modifiers)Deprecated.use the individual setters insteadFindIterable<TResult>noCursorTimeout(boolean noCursorTimeout)The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.FindIterable<TResult>oplogReplay(boolean oplogReplay)Users should not set this under normal circumstances.FindIterable<TResult>partial(boolean partial)Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).FindIterable<TResult>projection(Bson projection)Sets a document describing the fields to return for all matching documents.FindIterable<TResult>returnKey(boolean returnKey)Sets the returnKey.FindIterable<TResult>showRecordId(boolean showRecordId)Sets the showRecordId.FindIterable<TResult>skip(int skip)Sets the number of documents to skip.FindIterable<TResult>snapshot(boolean snapshot)Deprecated.Deprecated in MongoDB 3.6 release and removed in MongoDB 4.0 releaseFindIterable<TResult>sort(Bson sort)Sets the sort criteria to apply to the query.-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Method Detail
-
filter
FindIterable<TResult> filter(@Nullable Bson filter)
Sets the query filter to apply to the query.- Parameters:
filter- the filter, which may be null.- Returns:
- this
- MongoDB documentation
- Filter
-
limit
FindIterable<TResult> limit(int limit)
Sets the limit to apply.- Parameters:
limit- the limit, which may be 0- Returns:
- this
- MongoDB documentation
- Limit
-
skip
FindIterable<TResult> skip(int skip)
Sets the number of documents to skip.- Parameters:
skip- the number of documents to skip- Returns:
- this
- MongoDB documentation
- Skip
-
maxTime
FindIterable<TResult> maxTime(long maxTime, TimeUnit timeUnit)
Sets the maximum execution time on the server for this operation.- Parameters:
maxTime- the max timetimeUnit- the time unit, which may not be null- Returns:
- this
- MongoDB documentation
- Max Time
-
maxAwaitTime
FindIterable<TResult> maxAwaitTime(long maxAwaitTime, TimeUnit timeUnit)
The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query. This only applies to a TAILABLE_AWAIT cursor. When the cursor is not a TAILABLE_AWAIT cursor, this option is ignored. On servers >= 3.2, this option will be specified on the getMore command as "maxTimeMS". The default is no value: no "maxTimeMS" is sent to the server with the getMore command. On servers < 3.2, this option is ignored, and indicates that the driver should respect the server's default value A zero value will be ignored.- Parameters:
maxAwaitTime- the max await timetimeUnit- the time unit to return the result in- Returns:
- the maximum await execution time in the given time unit
- Since:
- 3.2
- MongoDB documentation
- Max Time
-
modifiers
@Deprecated FindIterable<TResult> modifiers(@Nullable Bson modifiers)
Deprecated.use the individual setters insteadSets the query modifiers to apply to this operation.- Parameters:
modifiers- the query modifiers to apply, which may be null.- Returns:
- this
- MongoDB documentation
- Query Modifiers
-
projection
FindIterable<TResult> projection(@Nullable Bson projection)
Sets a document describing the fields to return for all matching documents.- Parameters:
projection- the project document, which may be null.- Returns:
- this
- MongoDB documentation
- Projection
-
sort
FindIterable<TResult> sort(@Nullable Bson sort)
Sets the sort criteria to apply to the query.- Parameters:
sort- the sort criteria, which may be null.- Returns:
- this
- MongoDB documentation
- Sort
-
noCursorTimeout
FindIterable<TResult> noCursorTimeout(boolean noCursorTimeout)
The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. Set this option to prevent that.- Parameters:
noCursorTimeout- true if cursor timeout is disabled- Returns:
- this
-
oplogReplay
FindIterable<TResult> oplogReplay(boolean oplogReplay)
Users should not set this under normal circumstances.- Parameters:
oplogReplay- if oplog replay is enabled- Returns:
- this
-
partial
FindIterable<TResult> partial(boolean partial)
Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).- Parameters:
partial- if partial results for sharded clusters is enabled- Returns:
- this
-
cursorType
FindIterable<TResult> cursorType(CursorType cursorType)
Sets the cursor type.- Parameters:
cursorType- the cursor type- Returns:
- this
-
batchSize
FindIterable<TResult> batchSize(int batchSize)
Sets the number of documents to return per batch.- Specified by:
batchSizein interfaceMongoIterable<TResult>- Parameters:
batchSize- the batch size- Returns:
- this
- MongoDB documentation
- Batch Size
-
collation
FindIterable<TResult> collation(@Nullable Collation collation)
Sets the collation optionsA null value represents the server default.
- Parameters:
collation- the collation options to use- Returns:
- this
- Since:
- 3.4
- Since server release
- 3.4
-
comment
FindIterable<TResult> comment(@Nullable String comment)
Sets the comment to the query. A null value means no comment is set.- Parameters:
comment- the comment- Returns:
- this
- Since:
- 3.5
-
hint
FindIterable<TResult> hint(@Nullable Bson hint)
Sets the hint for which index to use. A null value means no hint is set.- Parameters:
hint- the hint- Returns:
- this
- Since:
- 3.5
-
hintString
FindIterable<TResult> hintString(@Nullable String hint)
Sets the hint to apply.Note: If
hint(Bson)is set that will be used instead of any hint string.- Parameters:
hint- the name of the index which should be used for the operation- Returns:
- this
- Since:
- 3.12
-
max
FindIterable<TResult> max(@Nullable Bson max)
Sets the exclusive upper bound for a specific index. A null value means no max is set.- Parameters:
max- the max- Returns:
- this
- Since:
- 3.5
-
min
FindIterable<TResult> min(@Nullable Bson min)
Sets the minimum inclusive lower bound for a specific index. A null value means no max is set.- Parameters:
min- the min- Returns:
- this
- Since:
- 3.5
-
maxScan
@Deprecated FindIterable<TResult> maxScan(long maxScan)
Deprecated.Deprecated as of MongoDB 4.0 releaseSets the maximum number of documents or index keys to scan when executing the query. A zero value or less will be ignored, and indicates that the driver should respect the server's default value.- Parameters:
maxScan- the maxScan- Returns:
- this
- Since:
- 3.5
-
returnKey
FindIterable<TResult> returnKey(boolean returnKey)
Sets the returnKey. If true the find operation will return only the index keys in the resulting documents.- Parameters:
returnKey- the returnKey- Returns:
- this
- Since:
- 3.5
-
showRecordId
FindIterable<TResult> showRecordId(boolean showRecordId)
Sets the showRecordId. Set to true to add a field$recordIdto the returned documents.- Parameters:
showRecordId- the showRecordId- Returns:
- this
- Since:
- 3.5
-
snapshot
@Deprecated FindIterable<TResult> snapshot(boolean snapshot)
Deprecated.Deprecated in MongoDB 3.6 release and removed in MongoDB 4.0 releaseSets the snapshot. If true it prevents the cursor from returning a document more than once because of an intervening write operation.- Parameters:
snapshot- the snapshot- Returns:
- this
- Since:
- 3.5
-
-