Package dev.morphia.aggregation.stages
Class ReplaceWith
- java.lang.Object
-
- dev.morphia.aggregation.stages.Stage
-
- dev.morphia.aggregation.stages.ReplaceWith
-
public class ReplaceWith extends Stage
Replaces the input document with the specified document. The operation replaces all existing fields in the input document, including the _id field. With $replaceWith, you can promote an embedded document to the top-level. You can also specify a new document as the replacement.The $replaceWith is an alias for $replaceRoot.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedReplaceWith()protectedReplaceWith(dev.morphia.aggregation.expressions.impls.Expression expression)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ReplaceWithfield(String name, dev.morphia.aggregation.expressions.impls.Expression expression)Adds a new fielddev.morphia.aggregation.expressions.impls.DocumentExpressiongetDocument()dev.morphia.aggregation.expressions.impls.ExpressiongetValue()static ReplaceWithreplaceWith()Creates a new stagestatic ReplaceWithreplaceWith(dev.morphia.aggregation.expressions.impls.Expression expression)Creates a new stage to replace the root with the given expression.static ReplaceWithwith()Deprecated, for removal: This API element is subject to removal in a future version.usereplaceWith()static ReplaceWithwith(dev.morphia.aggregation.expressions.impls.Expression expression)Deprecated, for removal: This API element is subject to removal in a future version.-
Methods inherited from class dev.morphia.aggregation.stages.Stage
aggregation, stageName
-
-
-
-
Method Detail
-
replaceWith
public static ReplaceWith replaceWith()
Creates a new stage- Returns:
- the new stage
- Since:
- 2.2
-
replaceWith
public static ReplaceWith replaceWith(dev.morphia.aggregation.expressions.impls.Expression expression)
Creates a new stage to replace the root with the given expression. This expression must evaluate to a document. No further fields can be added to this stage.- Parameters:
expression- the document expression- Returns:
- the new stage
- Since:
- 2.2
-
with
@Deprecated(forRemoval=true) public static ReplaceWith with()
Deprecated, for removal: This API element is subject to removal in a future version.usereplaceWith()Creates a new stage- Returns:
- the new stage
-
with
@Deprecated(forRemoval=true) public static ReplaceWith with(dev.morphia.aggregation.expressions.impls.Expression expression)
Deprecated, for removal: This API element is subject to removal in a future version.Creates a new stage to replace the root with the given expression. This expression must evaluate to a document. No further fields can be added to this stage.- Parameters:
expression- the document expression- Returns:
- the new stage
-
field
public ReplaceWith field(String name, dev.morphia.aggregation.expressions.impls.Expression expression)
Adds a new field- Parameters:
name- the field nameexpression- the value expression- Returns:
- this
-
getDocument
@MorphiaInternal public dev.morphia.aggregation.expressions.impls.DocumentExpression getDocument()
- Returns:
- the expression
Developer note.This is an internal item. Its function and presence are subject to change without warning. Its use is highly discouraged.
-
getValue
@Nullable @MorphiaInternal public dev.morphia.aggregation.expressions.impls.Expression getValue()
- Returns:
- the expression
Developer note.This is an internal item. Its function and presence are subject to change without warning. Its use is highly discouraged.
-
-