public class FindOneAndUpdateOptions extends Object
Constructor and Description |
---|
FindOneAndUpdateOptions() |
Modifier and Type | Method and Description |
---|---|
Bson |
getProjection()
Gets a document describing the fields to return for all matching documents.
|
boolean |
getReturnOriginal()
When true, return the original document from before it was updated.
|
Bson |
getSort()
Gets the sort criteria to apply to the query.
|
boolean |
isUpsert()
Returns true if a new document should be inserted if there are no matches to the query filter.
|
FindOneAndUpdateOptions |
projection(Bson projection)
Sets a document describing the fields to return for all matching documents.
|
FindOneAndUpdateOptions |
returnOriginal(boolean returnOriginal)
Set whether to return the original document from before it was updated.
|
FindOneAndUpdateOptions |
sort(Bson sort)
Sets the sort criteria to apply to the query.
|
FindOneAndUpdateOptions |
upsert(boolean upsert)
Set to true if a new document should be inserted if there are no matches to the query filter.
|
public Bson getProjection()
public FindOneAndUpdateOptions projection(Bson projection)
projection
- the project document, which may be null.public Bson getSort()
public FindOneAndUpdateOptions sort(Bson sort)
sort
- the sort criteria, which may be null.public boolean isUpsert()
public FindOneAndUpdateOptions upsert(boolean upsert)
upsert
- true if a new document should be inserted if there are no matches to the query filterpublic boolean getReturnOriginal()
public FindOneAndUpdateOptions returnOriginal(boolean returnOriginal)
returnOriginal
- set whether to return the original document from before it was updated