Package com.mongodb.client.model
Class FindOptions
- java.lang.Object
-
- com.mongodb.client.model.FindOptions
-
@Deprecated public final class FindOptions extends Object
Deprecated.there is no replacement for this classThe options to apply to a find operation (also commonly referred to as a query).
-
-
Constructor Summary
Constructors Constructor Description FindOptions()
Deprecated.Construct a new instance.FindOptions(FindOptions from)
Deprecated.this constructor is unused
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description FindOptions
batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.FindOptions
collation(Collation collation)
Deprecated.Sets the collation optionsFindOptions
comment(String comment)
Deprecated.Sets the comment to the query.FindOptions
cursorType(CursorType cursorType)
Deprecated.Sets the cursor type.int
getBatchSize()
Deprecated.Gets the number of documents to return per batch.Collation
getCollation()
Deprecated.Returns the collation optionsString
getComment()
Deprecated.Returns the comment to send with the query.CursorType
getCursorType()
Deprecated.Get the cursor type.Bson
getHint()
Deprecated.Returns the hint for which index to use.String
getHintString()
Deprecated.Gets the hint string to apply.int
getLimit()
Deprecated.Gets the limit to apply.Bson
getMax()
Deprecated.Returns the exclusive upper bound for a specific index.long
getMaxAwaitTime(TimeUnit timeUnit)
Deprecated.The maximum amount of time for the server to wait on new documents to satisfy a tailable cursor query.long
getMaxScan()
Deprecated.Deprecated as of MongoDB 4.0 releaselong
getMaxTime(TimeUnit timeUnit)
Deprecated.Gets the maximum execution time on the server for this operation.Bson
getMin()
Deprecated.Returns the minimum inclusive lower bound for a specific index.Bson
getModifiers()
Deprecated.use the individual modifier methods instead.Bson
getProjection()
Deprecated.Gets a document describing the fields to return for all matching documents.int
getSkip()
Deprecated.Gets the number of documents to skip.Bson
getSort()
Deprecated.Gets the sort criteria to apply to the query.FindOptions
hint(Bson hint)
Deprecated.Sets the hint for which index to use.FindOptions
hintString(String hint)
Deprecated.Sets the hint to apply.boolean
isNoCursorTimeout()
Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.boolean
isOplogReplay()
Deprecated.Users should not set this under normal circumstances.boolean
isPartial()
Deprecated.Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).boolean
isReturnKey()
Deprecated.Returns the returnKey.boolean
isShowRecordId()
Deprecated.Returns the showRecordId.boolean
isSnapshot()
Deprecated.Deprecated in MongoDB 3.6 release and removed in MongoDB 4.0 releaseFindOptions
limit(int limit)
Deprecated.Sets the limit to apply.FindOptions
max(Bson max)
Deprecated.Sets the exclusive upper bound for a specific index.FindOptions
maxAwaitTime(long maxAwaitTime, TimeUnit timeUnit)
Deprecated.Sets the maximum await execution time on the server for this operation.FindOptions
maxScan(long maxScan)
Deprecated.Deprecated as of MongoDB 4.0 releaseFindOptions
maxTime(long maxTime, TimeUnit timeUnit)
Deprecated.Sets the maximum execution time on the server for this operation.FindOptions
min(Bson min)
Deprecated.Sets the minimum inclusive lower bound for a specific index.FindOptions
modifiers(Bson modifiers)
Deprecated.use the individual modifier methods instead.FindOptions
noCursorTimeout(boolean noCursorTimeout)
Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use.FindOptions
oplogReplay(boolean oplogReplay)
Deprecated.Users should not set this under normal circumstances.FindOptions
partial(boolean partial)
Deprecated.Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).FindOptions
projection(Bson projection)
Deprecated.Sets a document describing the fields to return for all matching documents.FindOptions
returnKey(boolean returnKey)
Deprecated.Sets the returnKey.FindOptions
showRecordId(boolean showRecordId)
Deprecated.Sets the showRecordId.FindOptions
skip(int skip)
Deprecated.Sets the number of documents to skip.FindOptions
snapshot(boolean snapshot)
Deprecated.Deprecated in MongoDB 3.6 release and removed in MongoDB 4.0 releaseFindOptions
sort(Bson sort)
Deprecated.Sets the sort criteria to apply to the query.String
toString()
Deprecated.
-
-
-
Constructor Detail
-
FindOptions
public FindOptions()
Deprecated.Construct a new instance.
-
FindOptions
@Deprecated public FindOptions(FindOptions from)
Deprecated.this constructor is unusedConstruct a new instance by making a shallow copy of the given model.- Parameters:
from
- model to copy
-
-
Method Detail
-
getLimit
public int getLimit()
Deprecated.Gets the limit to apply. The default is null.- Returns:
- the limit
- MongoDB documentation
- Limit
-
limit
public FindOptions limit(int limit)
Deprecated.Sets the limit to apply.- Parameters:
limit
- the limit, which may be null- Returns:
- this
- MongoDB documentation
- Limit
-
getSkip
public int getSkip()
Deprecated.Gets the number of documents to skip. The default is 0.- Returns:
- the number of documents to skip
- MongoDB documentation
- Skip
-
skip
public FindOptions skip(int skip)
Deprecated.Sets the number of documents to skip.- Parameters:
skip
- the number of documents to skip- Returns:
- this
- MongoDB documentation
- Skip
-
getMaxTime
public long getMaxTime(TimeUnit timeUnit)
Deprecated.Gets the maximum execution time on the server for this operation. The default is 0, which places no limit on the execution time.- Parameters:
timeUnit
- the time unit to return the result in- Returns:
- the maximum execution time in the given time unit
- MongoDB documentation
- Max Time
-
maxTime
public FindOptions maxTime(long maxTime, TimeUnit timeUnit)
Deprecated.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
-
getMaxAwaitTime
public long getMaxAwaitTime(TimeUnit timeUnit)
Deprecated.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:
timeUnit
- 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
-
maxAwaitTime
public FindOptions maxAwaitTime(long maxAwaitTime, TimeUnit timeUnit)
Deprecated.Sets the maximum await execution time on the server for this operation.- Parameters:
maxAwaitTime
- the max await time. A zero value will be ignored, and indicates that the driver should respect the server's default valuetimeUnit
- the time unit, which may not be null- Returns:
- this
- Since:
- 3.2
- MongoDB documentation
- Max Time
-
getBatchSize
public int getBatchSize()
Deprecated.Gets the number of documents to return per batch. Default to 0, which indicates that the server chooses an appropriate batch size.- Returns:
- the batch size
- MongoDB documentation
- Batch Size
-
batchSize
public FindOptions batchSize(int batchSize)
Deprecated.Sets the number of documents to return per batch.- Parameters:
batchSize
- the batch size- Returns:
- this
- MongoDB documentation
- Batch Size
-
getModifiers
@Deprecated @Nullable public Bson getModifiers()
Deprecated.use the individual modifier methods instead.Gets the query modifiers to apply to this operation. The default is not to apply any modifiers.- Returns:
- the query modifiers, which may be null
- MongoDB documentation
- Query Modifiers
-
modifiers
@Deprecated public FindOptions modifiers(@Nullable Bson modifiers)
Deprecated.use the individual modifier methods instead.Sets 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
-
getProjection
@Nullable public Bson getProjection()
Deprecated.Gets a document describing the fields to return for all matching documents.- Returns:
- the project document, which may be null
- MongoDB documentation
- Projection
-
projection
public FindOptions projection(@Nullable Bson projection)
Deprecated.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
-
getSort
@Nullable public Bson getSort()
Deprecated.Gets the sort criteria to apply to the query. The default is null, which means that the documents will be returned in an undefined order.- Returns:
- a document describing the sort criteria
- MongoDB documentation
- Sort
-
sort
public FindOptions sort(@Nullable Bson sort)
Deprecated.Sets the sort criteria to apply to the query.- Parameters:
sort
- the sort criteria, which may be null.- Returns:
- this
- MongoDB documentation
- Sort
-
isNoCursorTimeout
public boolean isNoCursorTimeout()
Deprecated.The server normally times out idle cursors after an inactivity period (10 minutes) to prevent excess memory use. If true, that timeout is disabled.- Returns:
- true if cursor timeout is disabled
-
noCursorTimeout
public FindOptions noCursorTimeout(boolean noCursorTimeout)
Deprecated.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
-
isOplogReplay
public boolean isOplogReplay()
Deprecated.Users should not set this under normal circumstances.- Returns:
- if oplog replay is enabled
-
oplogReplay
public FindOptions oplogReplay(boolean oplogReplay)
Deprecated.Users should not set this under normal circumstances.- Parameters:
oplogReplay
- if oplog replay is enabled- Returns:
- this
-
isPartial
public boolean isPartial()
Deprecated.Get partial results from a sharded cluster if one or more shards are unreachable (instead of throwing an error).- Returns:
- if partial results for sharded clusters is enabled
-
partial
public FindOptions partial(boolean partial)
Deprecated.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
-
getCursorType
public CursorType getCursorType()
Deprecated.Get the cursor type.- Returns:
- the cursor type
-
cursorType
public FindOptions cursorType(CursorType cursorType)
Deprecated.Sets the cursor type.- Parameters:
cursorType
- the cursor type- Returns:
- this
-
getCollation
@Nullable public Collation getCollation()
Deprecated.Returns the collation options- Returns:
- the collation options
- Since:
- 3.4
- Since server release
- 3.4
-
collation
public FindOptions collation(@Nullable Collation collation)
Deprecated.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
-
getComment
@Nullable public String getComment()
Deprecated.Returns the comment to send with the query. The default is not to include a comment with the query.- Returns:
- the comment
- Since:
- 3.5
-
comment
public FindOptions comment(@Nullable String comment)
Deprecated.Sets the comment to the query. A null value means no comment is set.- Parameters:
comment
- the comment- Returns:
- this
- Since:
- 3.5
-
getHint
@Nullable public Bson getHint()
Deprecated.Returns the hint for which index to use. The default is not to set a hint.- Returns:
- the hint
- Since:
- 3.5
-
hint
public FindOptions hint(@Nullable Bson hint)
Deprecated.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
-
getHintString
@Nullable public String getHintString()
Deprecated.Gets the hint string to apply.- Returns:
- the hint string, which should be the name of an existing index
- Since:
- 3.12
-
hintString
public FindOptions hintString(@Nullable String hint)
Deprecated.Sets the hint to apply.- Parameters:
hint
- the name of the index which should be used for the operation- Returns:
- this
- Since:
- 3.12
-
getMax
@Nullable public Bson getMax()
Deprecated.Returns the exclusive upper bound for a specific index. By default there is no max bound.- Returns:
- the max
- Since:
- 3.5
-
max
public FindOptions max(@Nullable Bson max)
Deprecated.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
-
getMin
@Nullable public Bson getMin()
Deprecated.Returns the minimum inclusive lower bound for a specific index. By default there is no min bound.- Returns:
- the min
- Since:
- 3.5
-
min
public FindOptions min(@Nullable Bson min)
Deprecated.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
-
getMaxScan
@Deprecated public long getMaxScan()
Deprecated.Deprecated as of MongoDB 4.0 releaseReturns 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.- Returns:
- the maxScan
- Since:
- 3.5
-
maxScan
@Deprecated public FindOptions 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
-
isReturnKey
public boolean isReturnKey()
Deprecated.Returns the returnKey. If true the find operation will return only the index keys in the resulting documents. Default value is false. If returnKey is true and the find command does not use an index, the returned documents will be empty.- Returns:
- the returnKey
- Since:
- 3.5
-
returnKey
public FindOptions returnKey(boolean returnKey)
Deprecated.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
-
isShowRecordId
public boolean isShowRecordId()
Deprecated.Returns the showRecordId. Determines whether to return the record identifier for each document. If true, adds a field $recordId to the returned documents. The default is false.- Returns:
- the showRecordId
- Since:
- 3.5
-
showRecordId
public FindOptions showRecordId(boolean showRecordId)
Deprecated.Sets the showRecordId. Set to true to add a field$recordId
to the returned documents.- Parameters:
showRecordId
- the showRecordId- Returns:
- this
- Since:
- 3.5
-
isSnapshot
@Deprecated public boolean isSnapshot()
Deprecated.Deprecated in MongoDB 3.6 release and removed in MongoDB 4.0 releaseReturns the snapshot. Prevents the cursor from returning a document more than once because of an intervening write operation. The default is false.- Returns:
- the snapshot
- Since:
- 3.5
-
snapshot
@Deprecated public FindOptions 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
-
-