com.neeve.rog
Enum IRogChangeDataCaptureHandler.LogCompletionReason

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

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

Enumerates the set of reasons why CDC run on a log completed


Enum Constant Summary
Closed
          Indicates that the CDC processor was closed
Error
          Indicates an error was encountered during CDC processing
LogNotCheckpointed
          Indicates the CDC run completed because the log was not checkpointed
MovedOntoNextLog
          Indicates the CDC run completed it reached the end of the current log and the current log is not the live log. i.e.
 
Method Summary
static IRogChangeDataCaptureHandler.LogCompletionReason valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IRogChangeDataCaptureHandler.LogCompletionReason[] 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

LogNotCheckpointed

public static final IRogChangeDataCaptureHandler.LogCompletionReason LogNotCheckpointed
Indicates the CDC run completed because the log was not checkpointed


MovedOntoNextLog

public static final IRogChangeDataCaptureHandler.LogCompletionReason MovedOntoNextLog
Indicates the CDC run completed it reached the end of the current log and the current log is not the live log. i.e. CDC is moving onto the next log.


Closed

public static final IRogChangeDataCaptureHandler.LogCompletionReason Closed
Indicates that the CDC processor was closed


Error

public static final IRogChangeDataCaptureHandler.LogCompletionReason Error
Indicates an error was encountered during CDC processing

Method Detail

values

public static IRogChangeDataCaptureHandler.LogCompletionReason[] 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.LogCompletionReason c : IRogChangeDataCaptureHandler.LogCompletionReason.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.LogCompletionReason 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 © 2016 Neeve Research, LLC. All Rights Reserved.