Enum Class EventType.Category

java.lang.Object
java.lang.Enum<EventType.Category>
org.cojen.tupl.diag.EventType.Category
All Implemented Interfaces:
Serializable, Comparable<EventType.Category>, Constable
Enclosing class:
EventType

public static enum EventType.Category extends Enum<EventType.Category>
Event type category.
See Also:
  • Enum Constant Details

    • DEBUG

      public static final EventType.Category DEBUG
      General debug category.
    • CACHE

      public static final EventType.Category CACHE
      Category mainly used during cache initialization.
    • RECOVERY

      public static final EventType.Category RECOVERY
      Recovery processes transactions which did not get included in the last checkpoint.
    • DELETION

      public static final EventType.Category DELETION
      Index deletion event category.
    • REPLICATION

      public static final EventType.Category REPLICATION
      Event category for replication tasks performed by background threads.
    • TABLE

      public static final EventType.Category TABLE
      Event category for table tasks performed by background threads.
    • CHECKPOINT

      public static final EventType.Category CHECKPOINT
      Checkpoints commit transactional and non-transactional changes to the main database.
    • SHUTDOWN

      public static final EventType.Category SHUTDOWN
      Category for clean shutdown operations.
    • PANIC

      public static final EventType.Category PANIC
      A panic indicates that something is wrong with the database and it must be shutdown.
  • Method Details

    • values

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

      public static EventType.Category valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null