@Deprecated public final class UpdateRequest extends WriteRequest
WriteRequest.Type
Constructor and Description |
---|
UpdateRequest(BsonDocument filter,
BsonValue update,
WriteRequest.Type updateType)
Deprecated.
Construct a new instance.
|
Modifier and Type | Method and Description |
---|---|
UpdateRequest |
arrayFilters(java.util.List<BsonDocument> arrayFilters)
Deprecated.
Sets the array filters option
|
UpdateRequest |
collation(Collation collation)
Deprecated.
Sets the collation options
|
java.util.List<BsonDocument> |
getArrayFilters()
Deprecated.
Returns the array filters option
|
Collation |
getCollation()
Deprecated.
Returns the collation options
|
BsonDocument |
getFilter()
Deprecated.
Gets the query filter for the update.
|
WriteRequest.Type |
getType()
Deprecated.
Gets the type of the write.
|
BsonDocument |
getUpdate()
Deprecated.
use
getUpdateValue() instead |
BsonValue |
getUpdateValue()
Deprecated.
Gets the update.
|
boolean |
isMulti()
Deprecated.
Gets whether this update will update all documents matching the filter.
|
boolean |
isUpsert()
Deprecated.
Gets whether this update will insert a new document if no documents match the filter.
|
UpdateRequest |
multi(boolean isMulti)
Deprecated.
Sets whether this will update all documents matching the query filter.
|
UpdateRequest |
upsert(boolean isUpsert)
Deprecated.
Sets whether this update will insert a new document if no documents match the filter.
|
public UpdateRequest(BsonDocument filter, BsonValue update, WriteRequest.Type updateType)
filter
- the non-null query filterupdate
- the non-null update operationsupdateType
- the update type, which must be either UPDATE or REPLACEpublic WriteRequest.Type getType()
WriteRequest
getType
in class WriteRequest
public BsonDocument getFilter()
@Deprecated public BsonDocument getUpdate()
getUpdateValue()
insteadpublic BsonValue getUpdateValue()
public boolean isMulti()
public UpdateRequest multi(boolean isMulti)
isMulti
- whether this will update all documents matching the query filterpublic boolean isUpsert()
public UpdateRequest upsert(boolean isUpsert)
isUpsert
- whether this update will insert a new document if no documents match the filterpublic Collation getCollation()
public UpdateRequest collation(Collation collation)
A null value represents the server default.
collation
- the collation options to usepublic UpdateRequest arrayFilters(java.util.List<BsonDocument> arrayFilters)
arrayFilters
- the array filters, which may be nullpublic java.util.List<BsonDocument> getArrayFilters()
Copyright © 2010 - 2023 Adobe. All Rights Reserved