Enum EventType

    • Enum Constant Detail

      • BARBELINITIALIZED

        public static final EventType BARBELINITIALIZED
        Event fired when BarbelHisto is ready for execution.
      • ACQUIRELOCK

        public static final EventType ACQUIRELOCK
        Event fired when BarbelHisto acquires the lock for a journal update. Posted once for each save-operation at the beginning of the update-operation.
      • INSERTBITEMPORAL

        public static final EventType INSERTBITEMPORAL
        Event fired when BarbelHisto inserts new version data to a document journal for a given document ID. Posted once for each save-operation.
      • INACTIVATION

        public static final EventType INACTIVATION
        Event fired when BarbelHisto inactivates versions. Posted once for each save-operation.
      • UPDATEFINISHED

        public static final EventType UPDATEFINISHED
        Event fired when BarbelHisto finished updating the document journal of a given document id. Posted once for each save-operation.
      • RELEASELOCK

        public static final EventType RELEASELOCK
        Event fired when BarbelHisto released a lock on a document journal for a given document ID in the operation. Posted once for each save-operation at the end of the update-operation
    • 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