- All Superinterfaces:
Named
,Qualified
,QueryPart
,Serializable
A meta model of SQL
TRIGGER
objects.- Author:
- Lukas Eder
-
Method Summary
Modifier and TypeMethodDescription@Nullable Statement
The statement that is being executed by the trigger.int
The action order of execution for this trigger's action.@NotNull Set<TriggerEvent>
The event types on which a trigger fires.@Nullable TriggerExecution
The execution scope of a trigger.The fields of the trigger if it is anUPDATE
trigger.@Nullable Table<?>
getTable()
The table of the trigger.@Nullable TriggerTime
getTime()
The time when a trigger fires.@Nullable Condition
getWhen()
The condition that is checked before executing a trigger.Methods inherited from interface org.jooq.Named
$name, getComment, getCommentPart, getName, getQualifiedName, getUnqualifiedName
Methods inherited from interface org.jooq.Qualified
$schema, getCatalog, getSchema
-
Method Details
-
getTime
The time when a trigger fires. -
getEvents
The event types on which a trigger fires. -
getExecution
The execution scope of a trigger. -
getTable
The table of the trigger. -
getFields
The fields of the trigger if it is anUPDATE
trigger. -
getWhen
The condition that is checked before executing a trigger. -
getActionOrder
int getActionOrder()The action order of execution for this trigger's action. -
getAction
The statement that is being executed by the trigger.
-