Enum Class OutOperation.OutMode
java.lang.Object
java.lang.Enum<OutOperation.OutMode>
org.springframework.data.mongodb.core.aggregation.OutOperation.OutMode
- All Implemented Interfaces:
Serializable
,Comparable<OutOperation.OutMode>
,Constable
- Enclosing class:
- OutOperation
@Deprecated(since="4.4.7")
public static enum OutOperation.OutMode
extends Enum<OutOperation.OutMode>
Deprecated.
The mode for merging the aggregation pipeline output.
- Since:
- 2.2
- Author:
- Christoph Strobl
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDeprecated.Write documents to the target collection.Deprecated.Update on any document in the target collection with the same uniqueKey.Deprecated.Replaces theto
collection with the output from the aggregation pipeline. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.static OutOperation.OutMode
Deprecated.Returns the enum constant of this class with the specified name.static OutOperation.OutMode[]
values()
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
INSERT
Deprecated.Write documents to the target collection. Errors if a document same uniqueKey already exists. -
REPLACE
Deprecated.Update on any document in the target collection with the same uniqueKey. -
REPLACE_COLLECTION
Deprecated.Replaces theto
collection with the output from the aggregation pipeline. Cannot be in a different database.
-
-
Method Details
-
values
Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Deprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getMongoMode
Deprecated.
-
$out
syntax was superseded by$merge
. Support for the extended syntax has been removed with MongoDB 5, useMergeOperation
instead.