java.lang.Object
java.lang.Enum<SQLWriteMode>
com.orchestranetworks.addon.dint.dataconnector.spec.SQLWriteMode
All Implemented Interfaces:
Serializable, Comparable<SQLWriteMode>, Constable

public enum SQLWriteMode extends Enum<SQLWriteMode>
Defines the strategy to write into a table in a database.
Since:
4.5.0
  • Enum Constant Details

    • UPDATE_OR_INSERT

      public static final SQLWriteMode UPDATE_OR_INSERT
      A record will be updated if it already exists, otherwise it will be inserted.
    • UPDATE_ONLY

      public static final SQLWriteMode UPDATE_ONLY
      A record will be updated if it already exists, otherwise it will be ignored.
    • INSERT_ONLY

      public static final SQLWriteMode INSERT_ONLY
      A record will be inserted if it does not exist yet, otherwise it will be ignored.
    • DELETE_ONLY

      public static final SQLWriteMode DELETE_ONLY
      A record will be deleted if it already exists and is not present in the source, otherwise it will be ignored.
    • REPLACE_ALL_CONTENT

      public static final SQLWriteMode REPLACE_ALL_CONTENT
      All existing records will be replaced.
  • Method Details

    • values

      public static SQLWriteMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SQLWriteMode valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
      NullPointerException - if the argument is null