Package com.mongodb.client.model
Class DBCollectionUpdateOptions
java.lang.Object
com.mongodb.client.model.DBCollectionUpdateOptions
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
The options to apply when updating documents in the DBCollection
- Since:
- 3.4
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionarrayFilters
(List<? extends DBObject> arrayFilters) Deprecated.Sets the array filters optionbypassDocumentValidation
(Boolean bypassDocumentValidation) Deprecated.Sets the bypass document level validation flag.Deprecated.Sets the collationDeprecated.Sets the encoderDeprecated.Returns the array filters optionDeprecated.Gets the the bypass document level validation flagDeprecated.Returns the collation optionsDeprecated.Returns the encoderDeprecated.The write concern to use for the insertion.boolean
isMulti()
Deprecated.Gets whether all documents matching the query filter will be removed.boolean
isUpsert()
Deprecated.Returns true if a new document should be inserted if there are no matches to the query filter.multi
(boolean multi) Deprecated.Sets whether all documents matching the query filter will be removed.upsert
(boolean isUpsert) Deprecated.Set to true if a new document should be inserted if there are no matches to the query filter.writeConcern
(WriteConcern writeConcern) Deprecated.Sets the write concern
-
Constructor Details
-
DBCollectionUpdateOptions
public DBCollectionUpdateOptions()Deprecated.Construct a new instance
-
-
Method Details
-
isUpsert
public boolean isUpsert()Deprecated.Returns true if a new document should be inserted if there are no matches to the query filter. The default is false.- Returns:
- true if a new document should be inserted if there are no matches to the query filter
-
upsert
Deprecated.Set to true if a new document should be inserted if there are no matches to the query filter.- Parameters:
isUpsert
- true if a new document should be inserted if there are no matches to the query filter- Returns:
- this
-
getBypassDocumentValidation
Deprecated.Gets the the bypass document level validation flag- Returns:
- the bypass document level validation flag
-
bypassDocumentValidation
public DBCollectionUpdateOptions bypassDocumentValidation(@Nullable Boolean bypassDocumentValidation) Deprecated.Sets the bypass document level validation flag.- Parameters:
bypassDocumentValidation
- If true, allows the write to opt-out of document level validation.- Returns:
- this
-
multi
Deprecated.Sets whether all documents matching the query filter will be removed.- Parameters:
multi
- true if all documents matching the query filter will be removed- Returns:
- this
-
isMulti
public boolean isMulti()Deprecated.Gets whether all documents matching the query filter will be removed. The default is true.- Returns:
- whether all documents matching the query filter will be removed
-
getCollation
Deprecated.Returns the collation options- Returns:
- the collation options
-
collation
Deprecated.Sets the collation- Parameters:
collation
- the collation- Returns:
- this
-
arrayFilters
Deprecated.Sets the array filters option- Parameters:
arrayFilters
- the array filters, which may be null- Returns:
- this
- Since:
- 3.6
-
getArrayFilters
Deprecated.Returns the array filters option- Returns:
- the array filters, which may be null
- Since:
- 3.6
-
getWriteConcern
Deprecated.The write concern to use for the insertion. By default the write concern configured for the DBCollection instance will be used.- Returns:
- the write concern, or null if the default will be used.
-
writeConcern
Deprecated.Sets the write concern- Parameters:
writeConcern
- the write concern- Returns:
- this
-
getEncoder
Deprecated.Returns the encoder- Returns:
- the encoder
-
encoder
Deprecated.Sets the encoder- Parameters:
encoder
- the encoder- Returns:
- this
-