diff --git a/jOOQ/src/main/java/org/jooq/ExecuteType.java b/jOOQ/src/main/java/org/jooq/ExecuteType.java index 013ec9d85d..2fe1eb9282 100644 --- a/jOOQ/src/main/java/org/jooq/ExecuteType.java +++ b/jOOQ/src/main/java/org/jooq/ExecuteType.java @@ -46,7 +46,7 @@ package org.jooq; public enum ExecuteType { /** - * A SELECT query is being executed + * A SELECT query is being executed. *

* This may also apply to plain SQL WITH .. SELECT queries * (selections with common table expressions), FETCH queries @@ -56,7 +56,7 @@ public enum ExecuteType { /** * An INSERT, UPDATE, DELETE, - * MERGE query is being executed + * MERGE query is being executed. *

* This may also apply to plain SQL REPLACE, * UPSERT and other vendor-specific queries. @@ -64,24 +64,24 @@ public enum ExecuteType { WRITE, /** - * A DDL statement is being executed + * A DDL statement is being executed. *

* Currently, this only applies to TRUNCATE statements */ DDL, /** - * A batch statement is being executed (not yet supported) + * A batch statement is being executed. */ BATCH, /** - * A routine (stored procedure or function) is being executed + * A routine (stored procedure or function) is being executed. */ ROUTINE, /** - * An other (unknown) type of database interaction is being executed + * An other (unknown) type of database interaction is being executed. */ OTHER, }