com.hcl.voltmx.sync.services.syncruntime.config
Enum Enums.ChangeTracking

java.lang.Object
  extended by java.lang.Enum<Enums.ChangeTracking>
      extended by com.hcl.voltmx.sync.services.syncruntime.config.Enums.ChangeTracking
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Enums.ChangeTracking>
Enclosing class:
Enums

public static enum Enums.ChangeTracking
extends java.lang.Enum<Enums.ChangeTracking>

Enumeration types for change tracking.

Change tracking is the mechanism to obtain the changes that have been made to the data.

When a data source table has the columns to indicate LastUpdateTimestamp & SoftDelteFlag, then those tables has the ability of ChangeTracking


Enum Constant Summary
Enterprise
          Enumeration value which indicates enterprise data source is tracking the changes
None
          Enumeration value which indicates change tracking is not exist
Replica
          Enumeration value which indicates replica database is tracking the changes
 
Method Summary
static Enums.ChangeTracking valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Enums.ChangeTracking[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Enterprise

public static final Enums.ChangeTracking Enterprise
Enumeration value which indicates enterprise data source is tracking the changes


Replica

public static final Enums.ChangeTracking Replica
Enumeration value which indicates replica database is tracking the changes


None

public static final Enums.ChangeTracking None
Enumeration value which indicates change tracking is not exist

Method Detail

values

public static Enums.ChangeTracking[] 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 (Enums.ChangeTracking c : Enums.ChangeTracking.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Enums.ChangeTracking 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