com.neeve.rog
Enum IRogChangeDataCaptureHandler.ChangeType

java.lang.Object
  extended by java.lang.Enum<IRogChangeDataCaptureHandler.ChangeType>
      extended by com.neeve.rog.IRogChangeDataCaptureHandler.ChangeType
All Implemented Interfaces:
Serializable, Comparable<IRogChangeDataCaptureHandler.ChangeType>
Enclosing interface:
IRogChangeDataCaptureHandler

public static enum IRogChangeDataCaptureHandler.ChangeType
extends Enum<IRogChangeDataCaptureHandler.ChangeType>

Enumerates the various types of change for an object that can be reported by the CDC processor


Enum Constant Summary
Noop
          Indicates net result of a noop of an object This change type indicates that an object was not present prior to starting the checkpoint associated with the change event containing this type and the object was put and removed in the processing checkpoint
Put
          Indicates an object was added.
Remove
          Indicates an object was removed.
Send
          Indicates an object was "sent".
Update
          Indicates an object was updated.
 
Method Summary
static IRogChangeDataCaptureHandler.ChangeType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRogChangeDataCaptureHandler.ChangeType[] 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

Put

public static final IRogChangeDataCaptureHandler.ChangeType Put
Indicates an object was added.

This change type indicates that an object was not present prior to starting the checkpoint associated with the change event containing this type and the object was updated in the processing checkpoint


Update

public static final IRogChangeDataCaptureHandler.ChangeType Update
Indicates an object was updated.

This change type indicates that an object was already present prior to starting the checkpoint associated with the change event containing this type and the object was updated in the processing checkpoint


Remove

public static final IRogChangeDataCaptureHandler.ChangeType Remove
Indicates an object was removed.

This change type indicates that an object was already present prior to starting the checkpoint associated with the change event containing this type and the object was removed in the processing checkpoint


Send

public static final IRogChangeDataCaptureHandler.ChangeType Send
Indicates an object was "sent".

This change type is dispatched for objects that were "sent" to the log. The send change type does not reflect a change to the state of an object. This change type just supplies all send operations for an object in the processed checkpoint.


Noop

public static final IRogChangeDataCaptureHandler.ChangeType Noop
Indicates net result of a noop of an object

This change type indicates that an object was not present prior to starting the checkpoint associated with the change event containing this type and the object was put and removed in the processing checkpoint

Method Detail

values

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

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

valueOf

public static IRogChangeDataCaptureHandler.ChangeType 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


Copyright © 2015 Neeve Research, LLC. All Rights Reserved.