Package sonia.scm

Enum Class HandlerEventType

java.lang.Object
java.lang.Enum<HandlerEventType>
sonia.scm.HandlerEventType
All Implemented Interfaces:
Serializable, Comparable<HandlerEventType>, Constable

public enum HandlerEventType extends Enum<HandlerEventType>
Handler event type.
  • Enum Constant Details

    • CREATE

      public static final HandlerEventType CREATE
      After a new object is stored by a handler.
    • MODIFY

      public static final HandlerEventType MODIFY
      After an object is modified by a handler.
    • DELETE

      public static final HandlerEventType DELETE
      After an object is removed by a handler.
    • BEFORE_CREATE

      public static final HandlerEventType BEFORE_CREATE
      Before a new object is stored by a handler.
      Since:
      1.16
    • BEFORE_MODIFY

      public static final HandlerEventType BEFORE_MODIFY
      Before an object is modified by a handler.
      Since:
      1.16
    • BEFORE_DELETE

      public static final HandlerEventType BEFORE_DELETE
      Before an object is removed by a handler.
      Since:
      1.16
  • Method Details

    • values

      public static HandlerEventType[] 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 HandlerEventType 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
    • isPost

      public boolean isPost()
      Returns true if the event is fired after the action is occurred.
      Since:
      1.21
    • isPre

      public boolean isPre()
      Returns true if the event is fired before the action is occurred.
      Since:
      1.21