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

public static enum OutOperation.OutMode extends Enum<OutOperation.OutMode>
The mode for merging the aggregation pipeline output.
Since:
2.2
Author:
Christoph Strobl
  • Enum Constant Details

    • INSERT

      public static final OutOperation.OutMode INSERT
      Write documents to the target collection. Errors if a document same uniqueKey already exists.
    • REPLACE

      public static final OutOperation.OutMode REPLACE
      Update on any document in the target collection with the same uniqueKey.
    • REPLACE_COLLECTION

      public static final OutOperation.OutMode REPLACE_COLLECTION
      Replaces the to collection with the output from the aggregation pipeline. Cannot be in a different database.
  • Method Details

    • values

      public static OutOperation.OutMode[] values()
      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

      public static OutOperation.OutMode valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • getMongoMode

      public String getMongoMode()