Enum Class EventType

java.lang.Object
java.lang.Enum<EventType>
org.iplass.mtp.entity.definition.listeners.EventType
All Implemented Interfaces:
Serializable, Comparable<EventType>, Constable

public enum EventType extends Enum<EventType>
イベント種別を表すenum。
  • Enum Constant Details

    • AFTER_DELETE

      public static final EventType AFTER_DELETE
    • AFTER_INSERT

      public static final EventType AFTER_INSERT
    • AFTER_UPDATE

      public static final EventType AFTER_UPDATE
    • BEFORE_VALIDATE

      public static final EventType BEFORE_VALIDATE
    • BEFORE_DELETE

      public static final EventType BEFORE_DELETE
    • BEFORE_INSERT

      public static final EventType BEFORE_INSERT
    • BEFORE_UPDATE

      public static final EventType BEFORE_UPDATE
    • ON_LOAD

      public static final EventType ON_LOAD
    • AFTER_RESTORE

      public static final EventType AFTER_RESTORE
    • AFTER_PURGE

      public static final EventType AFTER_PURGE
  • Method Details

    • values

      public static EventType[] 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 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