Enum EventType

    • Enum Constant Detail

      • INSERT

        public static final EventType INSERT
      • DELETE

        public static final EventType DELETE
      • UPDATE

        public static final EventType UPDATE
      • 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
      • UNSUPPORTED

        public static final EventType UNSUPPORTED
    • Field Detail

      • value

        private int value
    • Constructor Detail

      • EventType

        private EventType​(int value)
    • Method Detail

      • values

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