Package com.mongodb.client.model
Class DBCollectionRemoveOptions
java.lang.Object
com.mongodb.client.model.DBCollectionRemoveOptions
The options to apply when removing documents from the DBCollection
- Since:
- 3.4
- MongoDB documentation
- Remove Documents
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncollation(com.mongodb.client.model.Collation collation) Sets the collationSets the encodercom.mongodb.client.model.CollationReturns the collation optionsReturns the encodercom.mongodb.WriteConcernThe write concern to use for the insertion.writeConcern(com.mongodb.WriteConcern writeConcern) Sets the write concern
-
Constructor Details
-
DBCollectionRemoveOptions
public DBCollectionRemoveOptions()Construct a new instance
-
-
Method Details
-
getCollation
@Nullable public com.mongodb.client.model.Collation getCollation()Returns the collation options- Returns:
- the collation options
- Since server release
- 3.4
-
collation
Sets the collation- Parameters:
collation- the collation- Returns:
- this
- Since server release
- 3.4
-
getWriteConcern
@Nullable public com.mongodb.WriteConcern getWriteConcern()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
Sets the write concern- Parameters:
writeConcern- the write concern- Returns:
- this
-
getEncoder
Returns the encoder- Returns:
- the encoder
-
encoder
Sets the encoder- Parameters:
encoder- the encoder- Returns:
- this
-