Package com.icc.util

Enum Class DBProperties.Operation

java.lang.Object
java.lang.Enum<DBProperties.Operation>
com.icc.util.DBProperties.Operation
All Implemented Interfaces:
Serializable, Comparable<DBProperties.Operation>, Constable
Enclosing class:
DBProperties

public static enum DBProperties.Operation extends Enum<DBProperties.Operation>
These constants are used to specify whether the operation Type is of FRESH_UPLOAD, APPEND, UPDATE_APPEND.
  • Enum Constant Details

    • FRESH_UPLOAD

      public static final DBProperties.Operation FRESH_UPLOAD
      FRESH_UPLOAD Operation refers to Delete and Reload
    • APPEND

      public static final DBProperties.Operation APPEND
      APPEND Operation refers to Add New
    • UPDATE_APPEND

      public static final DBProperties.Operation UPDATE_APPEND
      UPDATE_APPEND Operation refers to UpdateExisting and Add New
    • UPDATE_APPEND_INVALIDATE

      public static final DBProperties.Operation UPDATE_APPEND_INVALIDATE
      UPDATE_APPEND_INVALIDATE Operation refers to UpdateExisting, Add New and Invalidate
  • Method Details

    • values

      public static DBProperties.Operation[] 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 DBProperties.Operation 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
    • getOperationType

      public static DBProperties.Operation getOperationType(String value)