Package com.mongodb.client.model
Class ReplaceOneModel<T>
java.lang.Object
com.mongodb.client.model.WriteModel<T>
com.mongodb.client.model.ReplaceOneModel<T>
- Type Parameters:
T
- the type of document to replace. This can be of any type for which aCodec
is registered
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
A model describing the replacement of at most one document that matches the query filter.
- Since:
- 3.0
-
Constructor Summary
ConstructorsConstructorDescriptionReplaceOneModel
(Bson filter, T replacement) Deprecated.Construct a new instance.ReplaceOneModel
(Bson filter, T replacement, ReplaceOptions options) Deprecated.Construct a new instance.ReplaceOneModel
(Bson filter, T replacement, UpdateOptions options) Deprecated.useReplaceOneModel(Bson, Object, ReplaceOptions)
instead -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Gets the query filter.Deprecated.usegetReplaceOptions()
insteadDeprecated.Gets the document which will replace the document matching the query filter.Deprecated.Gets the ReplaceOptions to apply.toString()
Deprecated.
-
Constructor Details
-
ReplaceOneModel
Deprecated.Construct a new instance.- Parameters:
filter
- a document describing the query filter, which may not be null.replacement
- the replacement document
-
ReplaceOneModel
Deprecated.useReplaceOneModel(Bson, Object, ReplaceOptions)
insteadConstruct a new instance.- Parameters:
filter
- a document describing the query filter, which may not be null.replacement
- the replacement documentoptions
- the options to apply
-
ReplaceOneModel
Deprecated.Construct a new instance.- Parameters:
filter
- a document describing the query filter, which may not be null.replacement
- the replacement documentoptions
- the options to apply- Since:
- 3.7
-
-
Method Details
-
getFilter
Deprecated.Gets the query filter.- Returns:
- the query filter
-
getReplacement
Deprecated.Gets the document which will replace the document matching the query filter.- Returns:
- the replacement document
-
getOptions
Deprecated.usegetReplaceOptions()
insteadGets the options to apply.- Returns:
- the update options
-
getReplaceOptions
Deprecated.Gets the ReplaceOptions to apply.- Returns:
- the replace options
- Since:
- 3.7
-
toString
Deprecated.
-