Enum SQLWriteMode

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<SQLWriteMode>

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

      Enum Constants 
      Enum Constant Description
      DELETE_ONLY
      A record will be deleted if it already exists and is not present in the source, otherwise it will be ignored.
      INSERT_ONLY
      A record will be inserted if it does not exist yet, otherwise it will be ignored.
      REPLACE_ALL_CONTENT
      All existing records will be replaced.
      UPDATE_ONLY
      A record will be updated if it already exists, otherwise it will be ignored.
      UPDATE_OR_INSERT
      A record will be updated if it already exists, otherwise it will be inserted.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static SQLWriteMode valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static SQLWriteMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • 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 Detail

      • values

        public static SQLWriteMode[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (SQLWriteMode c : SQLWriteMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SQLWriteMode valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null