Module org.jooq
Package org.jooq

Enum Class TriggerTime

All Implemented Interfaces:
Serializable, Comparable<TriggerTime>, Constable

@Pro public enum TriggerTime extends Enum<TriggerTime>
The time when which a trigger fires.
Author:
Lukas Eder
  • Enum Constant Details

    • BEFORE

      public static final TriggerTime BEFORE
      The trigger fires BEFORE an event.
    • INSTEAD_OF

      public static final TriggerTime INSTEAD_OF
      The trigger fires INSTEAD OF an event.
    • AFTER

      public static final TriggerTime AFTER
      The trigger fires AFTER an event.
  • Method Details

    • values

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