java.lang.Object
java.lang.Enum<EventType>
io.debezium.connector.oracle.logminer.events.EventType
All Implemented Interfaces:
Serializable, Comparable<EventType>

public enum EventType extends Enum<EventType>
Represents all supported event types that are loaded from Oracle LogMiner.
Author:
Chris Cranford
  • Enum Constant Details

    • INSERT

      public static final EventType INSERT
    • DELETE

      public static final EventType DELETE
    • UPDATE

      public static final EventType UPDATE
    • DDL

      public static final EventType DDL
    • START

      public static final EventType START
    • COMMIT

      public static final EventType COMMIT
    • SELECT_LOB_LOCATOR

      public static final EventType SELECT_LOB_LOCATOR
    • LOB_WRITE

      public static final EventType LOB_WRITE
    • LOB_TRIM

      public static final EventType LOB_TRIM
    • LOB_ERASE

      public static final EventType LOB_ERASE
    • MISSING_SCN

      public static final EventType MISSING_SCN
    • ROLLBACK

      public static final EventType ROLLBACK
    • XML_BEGIN

      public static final EventType XML_BEGIN
    • XML_WRITE

      public static final EventType XML_WRITE
    • XML_END

      public static final EventType XML_END
    • UNSUPPORTED

      public static final EventType UNSUPPORTED
  • Field Details

    • types

      private static EventType[] types
    • value

      private int value
  • Constructor Details

    • EventType

      private EventType(int value)
  • Method Details

    • values

      public static EventType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static EventType 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
    • getValue

      public int getValue()
    • from

      public static EventType from(int value)
      Resolve an EventType from a numeric event type operation code.
      Parameters:
      value - the operation code
      Returns:
      the event type, will be UNSUPPORTED if the code is not supported.