diff --git a/jOOQ-tools/src/org/jooq/xtend/Factory.xtend b/jOOQ-tools/src/org/jooq/xtend/Factory.xtend
index feb8f414d3..4c464813fd 100644
--- a/jOOQ-tools/src/org/jooq/xtend/Factory.xtend
+++ b/jOOQ-tools/src/org/jooq/xtend/Factory.xtend
@@ -169,7 +169,7 @@ class Factory extends Generators {
out.append('''
/**
- * Create a row value expression of degree «degree»
+ * Create a row value expression of degree «degree».
*
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -193,7 +193,7 @@ class Factory extends Generators {
out.append('''
/**
- * Create a row value expression of degree «degree»
+ * Create a row value expression of degree «degree».
*
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -217,7 +217,7 @@ class Factory extends Generators {
out.append('''
/**
- * Create a VALUES() expression of degree «degree»
+ * Create a VALUES() expression of degree «degree».
*
* The VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
diff --git a/jOOQ/src/main/java/org/jooq/impl/Executor.java b/jOOQ/src/main/java/org/jooq/impl/Executor.java
index dddcc3d02d..34af9e2ed3 100644
--- a/jOOQ/src/main/java/org/jooq/impl/Executor.java
+++ b/jOOQ/src/main/java/org/jooq/impl/Executor.java
@@ -252,7 +252,7 @@ public class Executor implements Configuration {
}
/**
- * Create an executor with a dialect and settings configured
+ * Create an executor with a dialect and settings configured.
*
* Without a connection or data source, this executor cannot execute * queries. Use it to render SQL only. @@ -372,7 +372,7 @@ public class Executor implements Configuration { } /** - * Create an executor from a custom configuration + * Create an executor from a custom configuration. * * @param configuration The configuration */ @@ -441,11 +441,16 @@ public class Executor implements Configuration { // XXX Convenience methods accessing the underlying Connection // ------------------------------------------------------------------------- + /** + * Access the database meta data. + *
+ * This method returns a wrapper type that gives access to your JDBC + * connection's database meta data. + */ public final Meta meta() { return new MetaImpl(this); } - // ------------------------------------------------------------------------- // XXX RenderContext and BindContext accessors // ------------------------------------------------------------------------- @@ -728,8 +733,10 @@ public class Executor implements Configuration { } /** - * Execute a new query holding plain SQL. There must be as many bind - * variables contained in the SQL, as passed in the bindings parameter + * Execute a new query holding plain SQL. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* Example (Postgres): *
@@ -825,8 +832,10 @@ public class Executor implements Configuration { /** * Execute a new query holding plain SQL and "lazily" return the generated - * result. There must be as many bind variables contained in the SQL, as - * passed in the bindings parameter + * result. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* The returned {@link Cursor} holds a reference to the executed * {@link PreparedStatement} and the associated {@link ResultSet}. Data can @@ -899,7 +908,7 @@ public class Executor implements Configuration { /** * Execute a new query holding plain SQL, possibly returning several result - * sets + * sets. *
* Example (Sybase ASE): *
@@ -924,8 +933,10 @@ public class Executor implements Configuration { /** * Execute a new query holding plain SQL, possibly returning several result - * sets. There must be as many bind variables contained in the SQL, as - * passed in the bindings parameter + * sets. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* Example (Sybase ASE): *
@@ -1012,8 +1023,10 @@ public class Executor implements Configuration { } /** - * Execute a new query holding plain SQL. There must be as many bind - * variables contained in the SQL, as passed in the bindings parameter + * Execute a new query holding plain SQL. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* Example (Postgres): *
@@ -1093,8 +1106,10 @@ public class Executor implements Configuration { } /** - * Execute a new query holding plain SQL. There must be as many bind - * variables contained in the SQL, as passed in the bindings parameter + * Execute a new query holding plain SQL. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* NOTE: When inserting plain SQL into jOOQ objects, you must * guarantee syntax integrity. You may also create the possibility of @@ -1144,8 +1159,9 @@ public class Executor implements Configuration { } /** - * Create a new query holding plain SQL. There must not be any binding - * variables contained in the SQL + * Create a new query holding plain SQL. + *
+ * There must not be any binding variables contained in the SQL *
* Use this method, when you want to take advantage of the many ways to * fetch results in jOOQ, using {@link ResultQuery}. Some examples: @@ -1194,8 +1210,10 @@ public class Executor implements Configuration { } /** - * Create a new query holding plain SQL. There must be as many bind - * variables contained in the SQL, as passed in the bindings parameter + * Create a new query holding plain SQL. + *
+ * There must be as many bind variables contained in the SQL, as passed in + * the bindings parameter *
* Use this method, when you want to take advantage of the many ways to * fetch results in jOOQ, using {@link ResultQuery}. Some examples: @@ -1280,8 +1298,9 @@ public class Executor implements Configuration { /** * Fetch all data from a JDBC {@link ResultSet} and transform it to a jOOQ - * {@link Result}. After fetching all data, the JDBC ResultSet will be - * closed. + * {@link Result}. + *
+ * After fetching all data, the JDBC ResultSet will be closed. *
* Use {@link #fetchLazy(ResultSet)}, to fetch one Record at a
* time, instead of load the entire ResultSet into a jOOQ
@@ -1298,7 +1317,9 @@ public class Executor implements Configuration {
/**
* Fetch all data from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Result}. After fetching all data, the JDBC ResultSet will be
+ * {@link Result}.
+ *
+ * After fetching all data, the JDBC ResultSet will be * closed. *
* Use {@link #fetchLazy(ResultSet)}, to fetch one Record at a
@@ -1320,7 +1341,9 @@ public class Executor implements Configuration {
/**
* Fetch all data from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Result}. After fetching all data, the JDBC ResultSet will be
+ * {@link Result}.
+ *
+ * After fetching all data, the JDBC ResultSet will be * closed. *
* Use {@link #fetchLazy(ResultSet)}, to fetch one Record at a
@@ -1342,7 +1365,9 @@ public class Executor implements Configuration {
/**
* Fetch all data from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Result}. After fetching all data, the JDBC ResultSet will be
+ * {@link Result}.
+ *
+ * After fetching all data, the JDBC ResultSet will be * closed. *
* Use {@link #fetchLazy(ResultSet)}, to fetch one Record at a
@@ -1364,7 +1389,9 @@ public class Executor implements Configuration {
/**
* Fetch a record from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Record}. This will internally fetch all records and throw an
+ * {@link Record}.
+ *
+ * This will internally fetch all records and throw an * exception if there was more than one resulting record. * * @param rs The JDBC ResultSet to fetch data from @@ -1379,7 +1406,9 @@ public class Executor implements Configuration { /** * Fetch a record from a JDBC {@link ResultSet} and transform it to a jOOQ - * {@link Record}. This will internally fetch all records and throw an + * {@link Record}. + *
+ * This will internally fetch all records and throw an * exception if there was more than one resulting record. *
* The additional fields argument is used by jOOQ to coerce
@@ -1398,7 +1427,9 @@ public class Executor implements Configuration {
/**
* Fetch a record from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Record}. This will internally fetch all records and throw an
+ * {@link Record}.
+ *
+ * This will internally fetch all records and throw an * exception if there was more than one resulting record. *
* The additional types argument is used by jOOQ to coerce
@@ -1417,7 +1448,9 @@ public class Executor implements Configuration {
/**
* Fetch a record from a JDBC {@link ResultSet} and transform it to a jOOQ
- * {@link Record}. This will internally fetch all records and throw an
+ * {@link Record}.
+ *
+ * This will internally fetch all records and throw an * exception if there was more than one resulting record. *
* The additional types argument is used by jOOQ to coerce
@@ -1636,7 +1669,7 @@ public class Executor implements Configuration {
// -------------------------------------------------------------------------
/**
- * Create a new DSL select statement
+ * Create a new DSL select statement.
*
* Example:
* This factory is the main entry point for client code, to access jOOQ classes
* and functionality. Here, you can instanciate all of those objects that cannot
@@ -246,7 +246,7 @@ public class Factory {
}
/**
- * Create a new DSL select statement
+ * Create a new DSL select statement.
*
* Unlike {@link Select} factory methods in the {@link Executor} API, this
* creates an unattached, and thus not directly renderable or executable
@@ -2219,7 +2219,7 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * A synonym for {@link Select#asTable()}. It might look a bit more fluent
+ * A synonym for {@link Select#asTable()}, which might look a bit more fluent
* like this, to some users
*
* @see Select#asTable()
@@ -2229,7 +2229,7 @@ public class Factory {
}
/**
- * A synonym for {@link #unnest(List)}
+ * A synonym for {@link #unnest(List)}.
*
* @see #unnest(List)
*/
@@ -2239,7 +2239,7 @@ public class Factory {
}
/**
- * A synonym for {@link #unnest(Object[])}
+ * A synonym for {@link #unnest(Object[])}.
*
* @see #unnest(Object[])
*/
@@ -2249,7 +2249,7 @@ public class Factory {
}
/**
- * A synonym for {@link #unnest(ArrayRecord)}
+ * A synonym for {@link #unnest(ArrayRecord)}.
*
* @see #unnest(ArrayRecord)
*/
@@ -2259,7 +2259,7 @@ public class Factory {
}
/**
- * A synonym for {@link #unnest(Field)}
+ * A synonym for {@link #unnest(Field)}.
*
* @see #unnest(Field)
*/
@@ -2269,7 +2269,7 @@ public class Factory {
}
/**
- * Create a table from a list of values
+ * Create a table from a list of values.
*
* This is equivalent to the
* This is equivalent to the
* This wraps the argument array in a
+ * The supplied field can have any of these types:
*
* This constructs a schema reference given the schema's qualified name.
* jOOQ will render the schema name according to your
@@ -2421,7 +2422,7 @@ public class Factory {
}
/**
- * Create a qualified table, given its table name
+ * Create a qualified table, given its table name.
*
* This constructs a table reference given the table's qualified name. jOOQ
* will render the table name according to your
@@ -2658,6 +2659,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must not be any binding
@@ -2683,6 +2686,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must be as many binding
@@ -2709,6 +2714,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must not be any binding
@@ -2735,6 +2742,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must be as many binding
@@ -2762,6 +2771,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must not be any binding
@@ -2788,6 +2799,8 @@ public class Factory {
}
/**
+ * Create a "plain SQL" field.
+ *
* A PlainSQLField is a field that can contain user-defined plain SQL,
* because sometimes it is easier to express things directly in SQL, for
* instance complex proprietary functions. There must be as many binding
@@ -2917,7 +2930,7 @@ public class Factory {
/**
*
* NOTE: When inserting plain SQL into jOOQ objects, you must
* guarantee syntax integrity. You may also create the possibility of
@@ -2935,7 +2948,7 @@ public class Factory {
/**
*
* NOTE: When inserting plain SQL into jOOQ objects, you must
* guarantee syntax integrity. You may also create the possibility of
@@ -2952,8 +2965,9 @@ public class Factory {
}
/**
- * Create a new condition holding plain SQL. There must not be any binding
- * variables contained in the SQL
+ * Create a new condition holding plain SQL.
+ *
+ * There must not be any binding variables contained in the SQL.
*
* Example:
*
@@ -2974,8 +2988,10 @@ public class Factory {
}
/**
- * Create a new condition holding plain SQL. There must be as many binding
- * variables contained in the SQL, as passed in the bindings parameter
+ * Create a new condition holding plain SQL.
+ *
+ * There must be as many binding variables contained in the SQL, as passed
+ * in the bindings parameter
*
* Example:
*
@@ -3031,7 +3047,7 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * Return a
* This is the same as calling {@link Condition#not()}
*/
@@ -3077,7 +3093,7 @@ public class Factory {
}
/**
- * Transform a condition into a boolean field
+ * Transform a condition into a boolean field.
*/
@Support
public static Field
+ * Decode is used as a method name to avoid name clashes with Java's
+ * reserved literal "case"
*
* @see Case
*/
@@ -3102,7 +3120,7 @@ public class Factory {
/**
* Gets the Oracle-style
*
* Returns the dialect's equivalent to DECODE:
*
* Returns the dialect's equivalent to COALESCE:
*
* Returns the dialect's equivalent to NVL:
*
* Returns the dialect's equivalent to NVL2:
*
* Returns the dialect's equivalent to NULLIF:
*
* This renders the upper function in all dialects:
*
* This renders the lower function in all dialects:
*
* This renders the trim function where available:
*
* This renders the rtrim function in all dialects:
*
* This renders the ltrim function in all dialects:
*
* This renders the rpad function where available:
*
* This renders the rpad function where available:
*
* This renders the lpad function where available:
*
* This renders the lpad function where available:
*
* This renders the repeat or replicate function where available:
*
* Essentially, this escapes
* Essentially, this escapes
* This renders the replace or str_replace function where available:
*
* This renders the replace or str_replace function:
*
* This renders the position or any equivalent function:
*
* This renders the ascii function:
*
* This creates
* This renders the substr or substring function:
*
* This renders the substr or substring function:
*
* This translates into any dialect
*/
@@ -3975,7 +3993,7 @@ public class Factory {
}
/**
- * Get the char_length(field) function
+ * Get the char_length(field) function.
*
* This translates into any dialect
*/
@@ -3985,7 +4003,7 @@ public class Factory {
}
/**
- * Get the bit_length(field) function
+ * Get the bit_length(field) function.
*
* This translates into any dialect
*/
@@ -3995,7 +4013,7 @@ public class Factory {
}
/**
- * Get the bit_length(field) function
+ * Get the bit_length(field) function.
*
* This translates into any dialect
*/
@@ -4005,7 +4023,7 @@ public class Factory {
}
/**
- * Get the octet_length(field) function
+ * Get the octet_length(field) function.
*
* This translates into any dialect
*/
@@ -4015,7 +4033,7 @@ public class Factory {
}
/**
- * Get the octet_length(field) function
+ * Get the octet_length(field) function.
*
* This translates into any dialect
*/
@@ -4029,7 +4047,7 @@ public class Factory {
// ------------------------------------------------------------------------
/**
- * Get the MySQL-specific
* These are the implementations for various databases:
*
@@ -4056,7 +4074,7 @@ public class Factory {
}
/**
- * Get the MySQL-specific
* These are the implementations for various databases:
*
@@ -4087,7 +4105,7 @@ public class Factory {
// ------------------------------------------------------------------------
/**
- * Get the current_date() function
+ * Get the current_date() function.
*
* This translates into any dialect
*/
@@ -4097,7 +4115,7 @@ public class Factory {
}
/**
- * Get the current_time() function
+ * Get the current_time() function.
*
* This translates into any dialect
*/
@@ -4107,7 +4125,7 @@ public class Factory {
}
/**
- * Get the current_timestamp() function
+ * Get the current_timestamp() function.
*
* This translates into any dialect
*/
@@ -4117,7 +4135,7 @@ public class Factory {
}
/**
- * Get the date difference in number of days
+ * Get the date difference in number of days.
*
* This translates into any dialect
*
@@ -4129,7 +4147,7 @@ public class Factory {
}
/**
- * Get the date difference in number of days
+ * Get the date difference in number of days.
*
* This translates into any dialect
*
@@ -4141,7 +4159,7 @@ public class Factory {
}
/**
- * Add an interval to a date
+ * Add an interval to a date.
*
* This translates into any dialect
*
@@ -4153,7 +4171,7 @@ public class Factory {
}
/**
- * Add an interval to a date
+ * Add an interval to a date.
*
* This translates into any dialect
*
@@ -4165,7 +4183,7 @@ public class Factory {
}
/**
- * Get the date difference in number of days
+ * Get the date difference in number of days.
*
* This translates into any dialect
*
@@ -4177,7 +4195,7 @@ public class Factory {
}
/**
- * Get the date difference in number of days
+ * Get the date difference in number of days.
*
* This translates into any dialect
*
@@ -4189,7 +4207,7 @@ public class Factory {
}
/**
- * Add an interval to a timestamp
+ * Add an interval to a timestamp.
*
* This translates into any dialect
*
@@ -4201,7 +4219,7 @@ public class Factory {
}
/**
- * Add an interval to a timestamp
+ * Add an interval to a timestamp.
*
* This translates into any dialect
*
@@ -4214,7 +4232,7 @@ public class Factory {
/**
* Get the timestamp difference as a
* This translates into any dialect
*
@@ -4227,7 +4245,7 @@ public class Factory {
/**
* Get the timestamp difference as a
* This translates into any dialect
*
@@ -4240,7 +4258,7 @@ public class Factory {
/**
* Get the timestamp difference as a
* This translates into any dialect
*
@@ -4253,7 +4271,7 @@ public class Factory {
/**
* Get the timestamp difference as a
* This translates into any dialect
*
@@ -4269,42 +4287,42 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * This is not yet implemented
+ * This is not yet implemented.
*/
static Field
* This translates into any dialect
*/
@@ -4324,7 +4342,7 @@ public class Factory {
}
/**
- * Get the extract(field, datePart) function
+ * Get the extract(field, datePart) function.
*
* This translates into any dialect
*/
@@ -4334,7 +4352,7 @@ public class Factory {
}
/**
- * Get the year part of a date
+ * Get the year part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#YEAR}
@@ -4345,7 +4363,7 @@ public class Factory {
}
/**
- * Get the year part of a date
+ * Get the year part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#YEAR}
@@ -4356,7 +4374,7 @@ public class Factory {
}
/**
- * Get the month part of a date
+ * Get the month part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#MONTH}
@@ -4367,7 +4385,7 @@ public class Factory {
}
/**
- * Get the month part of a date
+ * Get the month part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#MONTH}
@@ -4378,7 +4396,7 @@ public class Factory {
}
/**
- * Get the day part of a date
+ * Get the day part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#DAY}
@@ -4389,7 +4407,7 @@ public class Factory {
}
/**
- * Get the day part of a date
+ * Get the day part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#DAY}
@@ -4400,7 +4418,7 @@ public class Factory {
}
/**
- * Get the hour part of a date
+ * Get the hour part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#HOUR}
@@ -4411,7 +4429,7 @@ public class Factory {
}
/**
- * Get the hour part of a date
+ * Get the hour part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#HOUR}
@@ -4422,7 +4440,7 @@ public class Factory {
}
/**
- * Get the minute part of a date
+ * Get the minute part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#MINUTE}
@@ -4433,7 +4451,7 @@ public class Factory {
}
/**
- * Get the minute part of a date
+ * Get the minute part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#MINUTE}
@@ -4444,7 +4462,7 @@ public class Factory {
}
/**
- * Get the second part of a date
+ * Get the second part of a date.
*
* This is the same as calling {@link #extract(java.util.Date, DatePart)}
* with {@link DatePart#SECOND}
@@ -4455,7 +4473,7 @@ public class Factory {
}
/**
- * Get the second part of a date
+ * Get the second part of a date.
*
* This is the same as calling {@link #extract(Field, DatePart)}
* with {@link DatePart#SECOND}
@@ -4470,7 +4488,7 @@ public class Factory {
// ------------------------------------------------------------------------
/**
- * Create a ROLLUP(field1, field2, .., fieldn) grouping field
+ * Create a ROLLUP(field1, field2, .., fieldn) grouping field.
*
* This has been observed to work with the following databases:
*
* This has been observed to work with the following databases:
*
* This has been observed to work with the following databases:
*
* This has been observed to work with the following databases:
*
* This has been observed to work with the following databases:
*
* This has been observed to work with the following databases:
*
* This function has no equivalent in Adaptive Server, Derby, SQL Server and
* Sybase SQL Anywhere. Its current simulation implementation has
@@ -5128,7 +5146,7 @@ public class Factory {
}
/**
- * Find the greatest among all values
+ * Find the greatest among all values.
*
* This function has no equivalent in Adaptive Server, Derby, SQL Server and
* Sybase SQL Anywhere. Its current simulation implementation has
@@ -5142,7 +5160,7 @@ public class Factory {
}
/**
- * Find the least among all values
+ * Find the least among all values.
*
* This function has no equivalent in Adaptive Server, Derby, SQL Server and
* Sybase SQL Anywhere. Its current simulation implementation has
@@ -5158,7 +5176,7 @@ public class Factory {
}
/**
- * Find the least among all values
+ * Find the least among all values.
*
* This function has no equivalent in Adaptive Server, Derby, SQL Server and
* Sybase SQL Anywhere. Its current simulation implementation has
@@ -5172,7 +5190,7 @@ public class Factory {
}
/**
- * Get the sign of a numeric field: sign(field)
+ * Get the sign of a numeric field: sign(field).
*
* @see #sign(Field)
*/
@@ -5182,7 +5200,7 @@ public class Factory {
}
/**
- * Get the sign of a numeric field: sign(field)
+ * Get the sign of a numeric field: sign(field).
*
* This renders the sign function where available:
*
* This renders the same on all dialects:
*
* This renders the round function where available:
*
* This renders the round function where available:
*
* This renders the floor function where available:
*
* This renders the ceil or ceiling function where available:
*
* This function truncates
* This renders the sqrt function where available:
*
* This renders the same on all dialects:
*
* This renders the ln or log function where available:
*
* This renders the log function where available:
*
* This renders the power function where available:
*
* This renders the acos function where available:
*
* This renders the asin function where available:
*
* This renders the atan function where available:
*
* This renders the atan2 or atn2 function where available:
*
* This renders the cos function where available:
*
* This renders the sin function where available:
*
* This renders the tan function where available:
*
* This renders the cot function where available:
*
* This renders the sinh function where available:
*
* This renders the cosh function where available:
*
* This renders the tanh function where available:
*
* This is not supported by any RDBMS, but simulated using exp exp:
*
* This renders the degrees function where available:
*
* This renders the degrees function where available:
*
* Some dialects support several expressions in the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6071,7 +6089,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6086,7 +6104,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6101,7 +6119,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6116,7 +6134,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6131,7 +6149,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6146,7 +6164,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6161,7 +6179,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6176,7 +6194,7 @@ public class Factory {
}
/**
- * Get the
* The linear regression functions fit an ordinary-least-squares regression
* line to a set of number pairs. You can use them as both aggregate and
@@ -6727,7 +6745,7 @@ public class Factory {
}
/**
- * Get a bind value
+ * Get a bind value.
*
* jOOQ tries to derive the RDBMS {@link DataType} from the provided Java
* type
* This will try to bind
* [#2007] When coercing a (previously converted) value to a type, it may be that
* the type is still more general than the actual type. This is typically
@@ -6857,7 +6875,7 @@ public class Factory {
}
/**
- * Get a list of bind values and fields
+ * Get a list of bind values and fields.
*/
@Support
public static List
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -6942,7 +6960,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -6955,7 +6973,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -6968,7 +6986,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -6981,7 +6999,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -6994,7 +7012,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7007,7 +7025,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7020,7 +7038,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7033,7 +7051,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7046,7 +7064,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7059,7 +7077,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7072,7 +7090,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7085,7 +7103,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7098,7 +7116,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7111,7 +7129,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7124,7 +7142,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7137,7 +7155,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7150,7 +7168,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7163,7 +7181,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7176,7 +7194,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7189,7 +7207,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7202,7 +7220,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7217,7 +7235,7 @@ public class Factory {
// [jooq-tools] END [row-value]
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7230,7 +7248,7 @@ public class Factory {
// [jooq-tools] START [row-field]
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7243,7 +7261,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7256,7 +7274,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7269,7 +7287,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7282,7 +7300,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7295,7 +7313,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7308,7 +7326,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7321,7 +7339,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7334,7 +7352,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7347,7 +7365,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7360,7 +7378,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7373,7 +7391,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7386,7 +7404,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7399,7 +7417,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7412,7 +7430,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7425,7 +7443,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7438,7 +7456,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7451,7 +7469,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7464,7 +7482,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7477,7 +7495,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7490,7 +7508,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7503,7 +7521,7 @@ public class Factory {
}
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7518,7 +7536,7 @@ public class Factory {
// [jooq-tools] END [row-field]
/**
- * Create a row value expression of degree
* Note: Not all databases support row value expressions, but many row value
* expression operations can be simulated on all databases. See relevant row
@@ -7535,7 +7553,7 @@ public class Factory {
// [jooq-tools] START [values]
/**
- * Create a
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* The
* This will be any of the following:
*
* This translates into any dialect
*/
@@ -8378,7 +8396,7 @@ public class Factory {
}
/**
- * No instances
+ * No instances.
*/
protected Factory() {}
}
* SELECT * FROM [table] WHERE [conditions] ORDER BY [ordering] LIMIT [limit clause]
diff --git a/jOOQ/src/main/java/org/jooq/impl/Factory.java b/jOOQ/src/main/java/org/jooq/impl/Factory.java
index befe03ed9e..14a09f13b2 100644
--- a/jOOQ/src/main/java/org/jooq/impl/Factory.java
+++ b/jOOQ/src/main/java/org/jooq/impl/Factory.java
@@ -142,7 +142,7 @@ import org.jooq.exception.SQLDialectNotSupportedException;
import org.jooq.types.DayToSecond;
/**
- * A factory providing implementations to the org.jooq interfaces
+ * A factory providing implementations to the org.jooq interfaces.
* TABLE function for H2, or the
* UNNEST function in HSQLDB and Postgres
@@ -2286,7 +2286,7 @@ public class Factory {
}
/**
- * Create a table from an array of values
+ * Create a table from an array of values.
* TABLE function for H2, or the
* UNNEST function in HSQLDB and Postgres
@@ -2303,7 +2303,7 @@ public class Factory {
}
/**
- * Create a table from an array of values
+ * Create a table from an array of values.
* TABLE function for
* Oracle. Currently, only Oracle knows typed arrays
@@ -2314,8 +2314,9 @@ public class Factory {
}
/**
- * Create a table from a field. The supplied field can have any of these
- * types:
+ * Create a table from a field.
+ *
*
CURSOR or REF CURSOR
* fields, typically fetched from stored functions or from nested tablesfunction() can be used to access native functions that are
- * not yet or insufficiently supported by jOOQ
+ * not yet or insufficiently supported by jOOQ.
* function() can be used to access native functions that are
- * not yet or insufficiently supported by jOOQ
+ * not yet or insufficiently supported by jOOQ.
* Condition that will always evaluate to true
+ * Return a Condition that will always evaluate to true.
*/
@Support
public static Condition trueCondition() {
@@ -3039,7 +3055,7 @@ public class Factory {
}
/**
- * Return a Condition that will always evaluate to false
+ * Return a Condition that will always evaluate to false.
*/
@Support
public static Condition falseCondition() {
@@ -3067,7 +3083,7 @@ public class Factory {
}
/**
- * Invert a condition
+ * Invert a condition.
* DECODE(expression, search, result[, search , result]... [, default])
- * function
+ * function.
*
* @see #decode(Field, Field, Field, Field[])
*/
@@ -3114,7 +3132,7 @@ public class Factory {
/**
* Gets the Oracle-style
* DECODE(expression, search, result[, search , result]... [, default])
- * function
+ * function.
*
* @see #decode(Field, Field, Field, Field[])
*/
@@ -3126,7 +3144,7 @@ public class Factory {
/**
* Gets the Oracle-style
* DECODE(expression, search, result[, search , result]... [, default])
- * function
+ * function.
*
* @see #decode(Field, Field, Field, Field[])
*/
@@ -3138,7 +3156,7 @@ public class Factory {
/**
* Gets the Oracle-style
* DECODE(expression, search, result[, search , result]... [, default])
- * function
+ * function.
*
@@ -3196,7 +3214,7 @@ public class Factory {
}
/**
- * Cast a value to another type
+ * Cast a value to another type.
*
* @param
COALESCE(value1, value2, ... , value n)
- * function
+ * function.
*
* @see #coalesce(Field, Field...)
*/
@@ -3276,7 +3294,7 @@ public class Factory {
/**
* Gets the Oracle-style COALESCE(field1, field2, ... , field n)
- * function
+ * function.
*
@@ -3291,7 +3309,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL(value, defaultValue) function
+ * Gets the Oracle-style NVL(value, defaultValue) function.
*
* @see #nvl(Field, Field)
*/
@@ -3301,7 +3319,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL(value, defaultValue) function
+ * Gets the Oracle-style NVL(value, defaultValue) function.
*
* @see #nvl(Field, Field)
*/
@@ -3311,7 +3329,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL(value, defaultValue) function
+ * Gets the Oracle-style NVL(value, defaultValue) function.
*
* @see #nvl(Field, Field)
*/
@@ -3321,7 +3339,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL(value, defaultValue) function
+ * Gets the Oracle-style NVL(value, defaultValue) function.
*
@@ -3354,7 +3372,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
+ * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function.
*
* @see #nvl2(Field, Field, Field)
*/
@@ -3364,7 +3382,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
+ * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function.
*
* @see #nvl2(Field, Field, Field)
*/
@@ -3374,7 +3392,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
+ * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function.
*
* @see #nvl2(Field, Field, Field)
*/
@@ -3384,7 +3402,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function
+ * Gets the Oracle-style NVL2(value, valueIfNotNull, valueIfNull) function.
*
@@ -3401,7 +3419,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NULLIF(value, other) function
+ * Gets the Oracle-style NULLIF(value, other) function.
*
* @see #nullif(Field, Field)
*/
@@ -3411,7 +3429,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NULLIF(value, other) function
+ * Gets the Oracle-style NULLIF(value, other) function.
*
* @see #nullif(Field, Field)
*/
@@ -3421,7 +3439,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NULLIF(value, other) function
+ * Gets the Oracle-style NULLIF(value, other) function.
*
* @see #nullif(Field, Field)
*/
@@ -3431,7 +3449,7 @@ public class Factory {
}
/**
- * Gets the Oracle-style NULLIF(value, other) function
+ * Gets the Oracle-style NULLIF(value, other) function.
*
@@ -3450,7 +3468,7 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * Get the upper(field) function
+ * Get the upper(field) function.
*
* @see #upper(Field)
*/
@@ -3460,7 +3478,7 @@ public class Factory {
}
/**
- * Get the upper(field) function
+ * Get the upper(field) function.
*
@@ -3471,7 +3489,7 @@ public class Factory {
}
/**
- * Get the lower(field) function
+ * Get the lower(field) function.
*
* @see #lower(Field)
*/
@@ -3481,7 +3499,7 @@ public class Factory {
}
/**
- * Get the lower(field) function
+ * Get the lower(field) function.
* upper([field])
@@ -3492,7 +3510,7 @@ public class Factory {
}
/**
- * Get the trim(field) function
+ * Get the trim(field) function.
*
* @see #trim(Field)
*/
@@ -3502,7 +3520,7 @@ public class Factory {
}
/**
- * Get the trim(field) function
+ * Get the trim(field) function.
* lower([field])
... or simulates it elsewhere using
@@ -3514,7 +3532,7 @@ public class Factory {
}
/**
- * Get the rtrim(field) function
+ * Get the rtrim(field) function.
*
* @see #rtrim(Field)
*/
@@ -3524,7 +3542,7 @@ public class Factory {
}
/**
- * Get the rtrim(field) function
+ * Get the rtrim(field) function.
* trim([field])
@@ -3535,7 +3553,7 @@ public class Factory {
}
/**
- * Get the ltrim(field) function
+ * Get the ltrim(field) function.
*
* @see #ltrim(Field)
*/
@@ -3545,7 +3563,7 @@ public class Factory {
}
/**
- * Get the ltrim(field) function
+ * Get the ltrim(field) function.
* rtrim([field])
@@ -3556,7 +3574,7 @@ public class Factory {
}
/**
- * Get the rpad(field, length) function
+ * Get the rpad(field, length) function.
*
* @see #rpad(Field, Field)
*/
@@ -3566,7 +3584,7 @@ public class Factory {
}
/**
- * Get the rpad(field, length) function
+ * Get the rpad(field, length) function.
* ltrim([field])
... or simulates it
@@ -3580,7 +3598,7 @@ public class Factory {
}
/**
- * Get the rpad(field, length, character) function
+ * Get the rpad(field, length, character) function.
*
* @see #rpad(Field, Field, Field)
*/
@@ -3590,7 +3608,7 @@ public class Factory {
}
/**
- * Get the rpad(field, length, character) function
+ * Get the rpad(field, length, character) function.
*
* @see #rpad(Field, Field, Field)
*/
@@ -3600,7 +3618,7 @@ public class Factory {
}
/**
- * Get the rpad(field, length, character) function
+ * Get the rpad(field, length, character) function.
* rpad([field], [length])
... or simulates it
@@ -3617,7 +3635,7 @@ public class Factory {
}
/**
- * Get the lpad(field, length) function
+ * Get the lpad(field, length) function.
*
* @see #lpad(Field, Field)
*/
@@ -3627,7 +3645,7 @@ public class Factory {
}
/**
- * Get the lpad(field, length) function
+ * Get the lpad(field, length) function.
* rpad([field], [length])
... or simulates it
@@ -3641,7 +3659,7 @@ public class Factory {
}
/**
- * Get the lpad(field, length, character) function
+ * Get the lpad(field, length, character) function.
*
* @see #lpad(Field, Field, Field)
*/
@@ -3651,7 +3669,7 @@ public class Factory {
}
/**
- * Get the lpad(field, length, character) function
+ * Get the lpad(field, length, character) function.
*
* @see #lpad(Field, Field, Field)
*/
@@ -3661,7 +3679,7 @@ public class Factory {
}
/**
- * Get the lpad(field, length, character) function
+ * Get the lpad(field, length, character) function.
* lpad([field], [length])
... or simulates it
@@ -3678,7 +3696,7 @@ public class Factory {
}
/**
- * Get the repeat(field, count) function
+ * Get the repeat(field, count) function.
*
* @see #repeat(Field, Field)
*/
@@ -3688,7 +3706,7 @@ public class Factory {
}
/**
- * Get the repeat(field, count) function
+ * Get the repeat(field, count) function.
*
* @see #repeat(Field, Field)
*/
@@ -3698,7 +3716,7 @@ public class Factory {
}
/**
- * Get the repeat(count) function
+ * Get the repeat(count) function.
*
* @see #repeat(Field, Field)
*/
@@ -3708,7 +3726,7 @@ public class Factory {
}
/**
- * Get the repeat(field, count) function
+ * Get the repeat(field, count) function.
* lpad([field], [length])
repeat([field], [count]) or
@@ -3727,7 +3745,7 @@ public class Factory {
/**
* Convenience method for {@link #replace(Field, String, String)} to escape
- * data for use with {@link Field#like(Field, char)}
+ * data for use with {@link Field#like(Field, char)}.
* % and _ characters
*
@@ -3742,7 +3760,7 @@ public class Factory {
/**
* Convenience method for {@link #replace(Field, String, String)} to escape
- * data for use with {@link Field#like(Field, char)}
+ * data for use with {@link Field#like(Field, char)}.
* % and _ characters
*
@@ -3762,7 +3780,7 @@ public class Factory {
}
/**
- * Get the replace(field, search) function
+ * Get the replace(field, search) function.
*
* @see #replace(Field, Field)
*/
@@ -3772,7 +3790,7 @@ public class Factory {
}
/**
- * Get the replace(field, search) function
+ * Get the replace(field, search) function.
* replace([field], [search]) or
@@ -3786,7 +3804,7 @@ public class Factory {
}
/**
- * Get the replace(field, search, replace) function
+ * Get the replace(field, search, replace) function.
*
* @see #replace(Field, Field, Field)
*/
@@ -3796,7 +3814,7 @@ public class Factory {
}
/**
- * Get the replace(field, search, replace) function
+ * Get the replace(field, search, replace) function.
* replace([field], [search]) or
@@ -3808,7 +3826,7 @@ public class Factory {
}
/**
- * Get the position(in, search) function
+ * Get the position(in, search) function.
*
* @see #position(Field, Field)
*/
@@ -3818,7 +3836,7 @@ public class Factory {
}
/**
- * Get the position(in, search) function
+ * Get the position(in, search) function.
*
* @see #position(Field, Field)
*/
@@ -3828,7 +3846,7 @@ public class Factory {
}
/**
- * Get the position(in, search) function
+ * Get the position(in, search) function.
*
* @see #position(Field, Field)
*/
@@ -3838,7 +3856,7 @@ public class Factory {
}
/**
- * Get the position(in, search) function
+ * Get the position(in, search) function.
* position([search] in [in]) or
@@ -3853,7 +3871,7 @@ public class Factory {
}
/**
- * Get the ascii(field) function
+ * Get the ascii(field) function.
*
* @see #ascii(Field)
*/
@@ -3863,7 +3881,7 @@ public class Factory {
}
/**
- * Get the ascii(field) function
+ * Get the ascii(field) function.
*
@@ -3874,7 +3892,7 @@ public class Factory {
}
/**
- * Get the concat(value[, value, ...]) function
+ * Get the concat(value[, value, ...]) function.
*
* @see #concat(Field...)
*/
@@ -3884,7 +3902,7 @@ public class Factory {
}
/**
- * Get the concat(field[, field, ...]) function
+ * Get the concat(field[, field, ...]) function.
* ascii([field])
fields[0] || fields[1] || ... as an
* expression, or concat(fields[0], fields[1], ...),
@@ -3899,7 +3917,7 @@ public class Factory {
}
/**
- * Get the substring(field, startingPosition) function
+ * Get the substring(field, startingPosition) function.
*
* @see #substring(Field, Field)
*/
@@ -3909,7 +3927,7 @@ public class Factory {
}
/**
- * Get the substring(field, startingPosition) function
+ * Get the substring(field, startingPosition) function.
* substr([field], [startingPosition]) or
@@ -3921,7 +3939,7 @@ public class Factory {
}
/**
- * Get the substring(field, startingPosition, length) function
+ * Get the substring(field, startingPosition, length) function.
*
* @see #substring(Field, Field, Field)
*/
@@ -3931,7 +3949,7 @@ public class Factory {
}
/**
- * Get the substring(field, startingPosition, length) function
+ * Get the substring(field, startingPosition, length) function.
* substr([field], [startingPosition], [length]) or
@@ -3944,7 +3962,7 @@ public class Factory {
/**
* Get the length of a VARCHAR type. This is a synonym for
- * {@link #charLength(String)}
+ * {@link #charLength(String)}.
*
* @see #charLength(String)
*/
@@ -3955,7 +3973,7 @@ public class Factory {
/**
* Get the length of a VARCHAR type. This is a synonym for
- * {@link #charLength(Field)}
+ * {@link #charLength(Field)}.
*
* @see #charLength(Field)
*/
@@ -3965,7 +3983,7 @@ public class Factory {
}
/**
- * Get the char_length(field) function
+ * Get the char_length(field) function.
* MD5() function
+ * Get the MySQL-specific MD5() function.
* MD5() function
+ * Get the MySQL-specific MD5() function.
* INTERVAL DAY TO SECOND
- * type
+ * type.
* INTERVAL DAY TO SECOND
- * type
+ * type.
* INTERVAL DAY TO SECOND
- * type
+ * type.
* INTERVAL DAY TO SECOND
- * type
+ * type.
*
@@ -4498,7 +4516,7 @@ public class Factory {
}
/**
- * Create a CUBE(field1, field2, .., fieldn) grouping field
+ * Create a CUBE(field1, field2, .., fieldn) grouping field.
*
@@ -4558,7 +4576,7 @@ public class Factory {
/**
* Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna,
- * fieldnb)) grouping field
+ * fieldnb)) grouping field.
*
@@ -4591,7 +4609,7 @@ public class Factory {
/**
* Create a GROUPING SETS((field1a, field1b), (field2a), .., (fieldna,
- * fieldnb)) grouping field
+ * fieldnb)) grouping field.
*
@@ -4625,7 +4643,7 @@ public class Factory {
/**
* Create a GROUPING(field) aggregation field to be used along with
*
CUBE, ROLLUP, and GROUPING SETS
- * groupings
+ * groupings.
*
@@ -4648,7 +4666,7 @@ public class Factory {
/**
* Create a GROUPING_ID(field1, field2, .., fieldn) aggregation field to be
* used along with
CUBE, ROLLUP, and
- * GROUPING SETS groupings
+ * GROUPING SETS groupings.
*
@@ -5104,7 +5122,7 @@ public class Factory {
// ------------------------------------------------------------------------
/**
- * Get the rand() function
+ * Get the rand() function.
*/
@Support
public static Field
@@ -5199,7 +5217,7 @@ public class Factory {
}
/**
- * Get the absolute value of a numeric field: abs(field)
+ * Get the absolute value of a numeric field: abs(field).
*
* @see #abs(Field)
*/
@@ -5209,7 +5227,7 @@ public class Factory {
}
/**
- * Get the absolute value of a numeric field: abs(field)
+ * Get the absolute value of a numeric field: abs(field).
* sign([field])
@@ -5220,7 +5238,7 @@ public class Factory {
}
/**
- * Get rounded value of a numeric field: round(field)
+ * Get rounded value of a numeric field: round(field).
*
* @see #round(Field)
*/
@@ -5230,7 +5248,7 @@ public class Factory {
}
/**
- * Get rounded value of a numeric field: round(field)
+ * Get rounded value of a numeric field: round(field).
* abs([field])
round([field]) or
@@ -5243,7 +5261,7 @@ public class Factory {
}
/**
- * Get rounded value of a numeric field: round(field, decimals)
+ * Get rounded value of a numeric field: round(field, decimals).
*
* @see #round(Field, int)
*/
@@ -5253,7 +5271,7 @@ public class Factory {
}
/**
- * Get rounded value of a numeric field: round(field, decimals)
+ * Get rounded value of a numeric field: round(field, decimals).
*
@@ -5265,7 +5283,7 @@ public class Factory {
}
/**
- * Get the largest integer value not greater than [this]
+ * Get the largest integer value not greater than [this].
*
* @see #floor(Field)
*/
@@ -5275,7 +5293,7 @@ public class Factory {
}
/**
- * Get the largest integer value not greater than [this]
+ * Get the largest integer value not greater than [this].
* round([field], [decimals])
@@ -5288,7 +5306,7 @@ public class Factory {
}
/**
- * Get the smallest integer value not less than [this]
+ * Get the smallest integer value not less than [this].
*
* @see #ceil(Field)
*/
@@ -5298,7 +5316,7 @@ public class Factory {
}
/**
- * Get the smallest integer value not less than [field]
+ * Get the smallest integer value not less than [field].
* floor([this])
ceil([field]) or
@@ -5312,7 +5330,7 @@ public class Factory {
}
/**
- * Truncate a number to a given number of decimals
+ * Truncate a number to a given number of decimals.
*
* @see #trunc(Field, Field)
*/
@@ -5322,7 +5340,7 @@ public class Factory {
}
/**
- * Truncate a number to a given number of decimals
+ * Truncate a number to a given number of decimals.
*
* @see #trunc(Field, Field)
*/
@@ -5332,7 +5350,7 @@ public class Factory {
}
/**
- * Truncate a number to a given number of decimals
+ * Truncate a number to a given number of decimals.
*
* @see #trunc(Field, Field)
*/
@@ -5342,7 +5360,7 @@ public class Factory {
}
/**
- * Truncate a number to a given number of decimals
+ * Truncate a number to a given number of decimals.
*
* @see #trunc(Field, Field)
*/
@@ -5352,7 +5370,7 @@ public class Factory {
}
/**
- * Truncate a number to a given number of decimals
+ * Truncate a number to a given number of decimals.
* number to the amount of decimals
* specified in decimals. Passing decimals = 0 to
@@ -5400,7 +5418,7 @@ public class Factory {
}
/**
- * Get the sqrt(field) function
+ * Get the sqrt(field) function.
*
* @see #sqrt(Field)
*/
@@ -5410,7 +5428,7 @@ public class Factory {
}
/**
- * Get the sqrt(field) function
+ * Get the sqrt(field) function.
* ... or simulates it elsewhere using
@@ -5423,7 +5441,7 @@ public class Factory {
}
/**
- * Get the exp(field) function, taking this field as the power of e
+ * Get the exp(field) function, taking this field as the power of e.
*
* @see #exp(Field)
*/
@@ -5433,7 +5451,7 @@ public class Factory {
}
/**
- * Get the exp(field) function, taking this field as the power of e
+ * Get the exp(field) function, taking this field as the power of e.
* sqrt([field])
@@ -5444,7 +5462,7 @@ public class Factory {
}
/**
- * Get the ln(field) function, taking the natural logarithm of this field
+ * Get the ln(field) function, taking the natural logarithm of this field.
*
* @see #ln(Field)
*/
@@ -5454,7 +5472,7 @@ public class Factory {
}
/**
- * Get the ln(field) function, taking the natural logarithm of this field
+ * Get the ln(field) function, taking the natural logarithm of this field.
* exp([field])
ln([field]) or
@@ -5466,7 +5484,7 @@ public class Factory {
}
/**
- * Get the log(field, base) function
+ * Get the log(field, base) function.
*
* @see #log(Field, int)
*/
@@ -5476,7 +5494,7 @@ public class Factory {
}
/**
- * Get the log(field, base) function
+ * Get the log(field, base) function.
* ... or simulates it elsewhere (in
@@ -5489,7 +5507,7 @@ public class Factory {
}
/**
- * Get the power(field, exponent) function
+ * Get the power(field, exponent) function.
*
* @see #power(Field, Field)
*/
@@ -5499,7 +5517,7 @@ public class Factory {
}
/**
- * Get the power(field, exponent) function
+ * Get the power(field, exponent) function.
*
* @see #power(Field, Field)
*/
@@ -5509,7 +5527,7 @@ public class Factory {
}
/**
- * Get the power(field, exponent) function
+ * Get the power(field, exponent) function.
*
* @see #power(Field, Field)
*/
@@ -5519,7 +5537,7 @@ public class Factory {
}
/**
- * Get the power(field, exponent) function
+ * Get the power(field, exponent) function.
* log([field])
... or simulates it
@@ -5532,7 +5550,7 @@ public class Factory {
}
/**
- * Get the arc cosine(field) function
+ * Get the arc cosine(field) function.
*
* @see #acos(Field)
*/
@@ -5542,7 +5560,7 @@ public class Factory {
}
/**
- * Get the arc cosine(field) function
+ * Get the arc cosine(field) function.
* power([field], [exponent])
@@ -5553,7 +5571,7 @@ public class Factory {
}
/**
- * Get the arc sine(field) function
+ * Get the arc sine(field) function.
*
* @see #asin(Field)
*/
@@ -5563,7 +5581,7 @@ public class Factory {
}
/**
- * Get the arc sine(field) function
+ * Get the arc sine(field) function.
* acos([field])
@@ -5574,7 +5592,7 @@ public class Factory {
}
/**
- * Get the arc tangent(field) function
+ * Get the arc tangent(field) function.
*
* @see #atan(Field)
*/
@@ -5584,7 +5602,7 @@ public class Factory {
}
/**
- * Get the arc tangent(field) function
+ * Get the arc tangent(field) function.
* asin([field])
@@ -5595,7 +5613,7 @@ public class Factory {
}
/**
- * Get the atan2(field, y) function
+ * Get the atan2(field, y) function.
*
* @see #atan2(Field, Field)
*/
@@ -5605,7 +5623,7 @@ public class Factory {
}
/**
- * Get the atan2(field, y) function
+ * Get the atan2(field, y) function.
*
* @see #atan2(Field, Field)
*/
@@ -5615,7 +5633,7 @@ public class Factory {
}
/**
- * Get the atan2(field, y) function
+ * Get the atan2(field, y) function.
*
* @see #atan2(Field, Field)
*/
@@ -5625,7 +5643,7 @@ public class Factory {
}
/**
- * Get the atan2(field, y) function
+ * Get the atan2(field, y) function.
* atan([field])
atan2([x], [y]) or
@@ -5637,7 +5655,7 @@ public class Factory {
}
/**
- * Get the cosine(field) function
+ * Get the cosine(field) function.
*
* @see #cos(Field)
*/
@@ -5647,7 +5665,7 @@ public class Factory {
}
/**
- * Get the cosine(field) function
+ * Get the cosine(field) function.
*
@@ -5658,7 +5676,7 @@ public class Factory {
}
/**
- * Get the sine(field) function
+ * Get the sine(field) function.
*
* @see #sin(Field)
*/
@@ -5668,7 +5686,7 @@ public class Factory {
}
/**
- * Get the sine(field) function
+ * Get the sine(field) function.
* cos([field])
@@ -5679,7 +5697,7 @@ public class Factory {
}
/**
- * Get the tangent(field) function
+ * Get the tangent(field) function.
*
* @see #tan(Field)
*/
@@ -5689,7 +5707,7 @@ public class Factory {
}
/**
- * Get the tangent(field) function
+ * Get the tangent(field) function.
* sin([field])
@@ -5700,7 +5718,7 @@ public class Factory {
}
/**
- * Get the cotangent(field) function
+ * Get the cotangent(field) function.
*
* @see #cot(Field)
*/
@@ -5710,7 +5728,7 @@ public class Factory {
}
/**
- * Get the cotangent(field) function
+ * Get the cotangent(field) function.
* tan([field])
... or simulates it elsewhere using
@@ -5722,7 +5740,7 @@ public class Factory {
}
/**
- * Get the hyperbolic sine function: sinh(field)
+ * Get the hyperbolic sine function: sinh(field).
*
* @see #sinh(Field)
*/
@@ -5732,7 +5750,7 @@ public class Factory {
}
/**
- * Get the hyperbolic sine function: sinh(field)
+ * Get the hyperbolic sine function: sinh(field).
* cot([field])
... or simulates it elsewhere using
@@ -5744,7 +5762,7 @@ public class Factory {
}
/**
- * Get the hyperbolic cosine function: cosh(field)
+ * Get the hyperbolic cosine function: cosh(field).
*
* @see #cosh(Field)
*/
@@ -5754,7 +5772,7 @@ public class Factory {
}
/**
- * Get the hyperbolic cosine function: cosh(field)
+ * Get the hyperbolic cosine function: cosh(field).
* sinh([field])
... or simulates it elsewhere using
@@ -5766,7 +5784,7 @@ public class Factory {
}
/**
- * Get the hyperbolic tangent function: tanh(field)
+ * Get the hyperbolic tangent function: tanh(field).
*
* @see #tanh(Field)
*/
@@ -5776,7 +5794,7 @@ public class Factory {
}
/**
- * Get the hyperbolic tangent function: tanh(field)
+ * Get the hyperbolic tangent function: tanh(field).
* cosh([field])
... or simulates it elsewhere using
@@ -5789,7 +5807,7 @@ public class Factory {
}
/**
- * Get the hyperbolic cotangent function: coth(field)
+ * Get the hyperbolic cotangent function: coth(field).
*
* @see #coth(Field)
*/
@@ -5799,7 +5817,7 @@ public class Factory {
}
/**
- * Get the hyperbolic cotangent function: coth(field)
+ * Get the hyperbolic cotangent function: coth(field).
* tanh([field])
@@ -5811,7 +5829,7 @@ public class Factory {
}
/**
- * Calculate degrees from radians from this field
+ * Calculate degrees from radians from this field.
*
* @see #deg(Field)
*/
@@ -5821,7 +5839,7 @@ public class Factory {
}
/**
- * Calculate degrees from radians from this field
+ * Calculate degrees from radians from this field.
* (exp([field] * 2) + 1) / (exp([field] * 2) - 1)
... or simulates it elsewhere:
@@ -5833,7 +5851,7 @@ public class Factory {
}
/**
- * Calculate radians from degrees from this field
+ * Calculate radians from degrees from this field.
*
* @see #rad(Field)
*/
@@ -5843,7 +5861,7 @@ public class Factory {
}
/**
- * Calculate radians from degrees from this field
+ * Calculate radians from degrees from this field.
* degrees([field])
... or simulates it elsewhere:
@@ -5860,7 +5878,7 @@ public class Factory {
/**
* Retrieve the Oracle-specific degrees([field])
LEVEL pseudo-field (to be used
- * along with CONNECT BY clauses)
+ * along with CONNECT BY clauses).
*/
@Support({ CUBRID, ORACLE })
public static FieldCONNECT_BY_ISCYCLE pseudo-field
- * (to be used along with CONNECT BY clauses)
+ * (to be used along with CONNECT BY clauses).
*/
@Support({ CUBRID, ORACLE })
public static FieldCONNECT_BY_ISLEAF pseudo-field
- * (to be used along with CONNECT BY clauses)
+ * (to be used along with CONNECT BY clauses).
*/
@Support({ CUBRID, ORACLE })
public static FieldCONNECT_BY_ROOT pseudo-column
- * (to be used along with CONNECT BY clauses)
+ * (to be used along with CONNECT BY clauses).
*/
@Support({ CUBRID, ORACLE })
public static PRIOR unary operator before a field
- * (to be used along with CONNECT BY clauses)
+ * (to be used along with CONNECT BY clauses).
*/
@Support({ CUBRID, ORACLE })
public static COUNT(DISTINCT expr1, expr2) aggregate function.
*/
@@ -5952,7 +5970,7 @@ public class Factory {
}
/**
- * Get the max value over a field: max(field)
+ * Get the max value over a field: max(field).
*/
@Support
public static REGR_SLOPE linear regression function
+ * Get the REGR_SLOPE linear regression function.
* REGR_INTERCEPT linear regression function
+ * Get the REGR_INTERCEPT linear regression function.
* REGR_COUNT linear regression function
+ * Get the REGR_COUNT linear regression function.
* REGR_R2 linear regression function
+ * Get the REGR_R2 linear regression function.
* REGR_AVGX linear regression function
+ * Get the REGR_AVGX linear regression function.
* REGR_AVGY linear regression function
+ * Get the REGR_AVGY linear regression function.
* REGR_SXX linear regression function
+ * Get the REGR_SXX linear regression function.
* REGR_SYY linear regression function
+ * Get the REGR_SYY linear regression function.
* REGR_SXY linear regression function
+ * Get the REGR_SXY linear regression function.
* <T>. This may not always be accurate, which can
@@ -6766,7 +6784,7 @@ public class Factory {
}
/**
- * Get a bind value with an associated type, taken from a field
+ * Get a bind value with an associated type, taken from a field.
*
* @param value as type in a
* PreparedStatement. If value and
@@ -6831,7 +6849,7 @@ public class Factory {
/**
* Get the "most specific" data type between a concrete value and an actual
- * coercion data type
+ * coercion data type.
* 1
+ * Create a row value expression of degree 1.
* 2
+ * Create a row value expression of degree 2.
* 3
+ * Create a row value expression of degree 3.
* 4
+ * Create a row value expression of degree 4.
* 5
+ * Create a row value expression of degree 5.
* 6
+ * Create a row value expression of degree 6.
* 7
+ * Create a row value expression of degree 7.
* 8
+ * Create a row value expression of degree 8.
* 9
+ * Create a row value expression of degree 9.
* 10
+ * Create a row value expression of degree 10.
* 11
+ * Create a row value expression of degree 11.
* 12
+ * Create a row value expression of degree 12.
* 13
+ * Create a row value expression of degree 13.
* 14
+ * Create a row value expression of degree 14.
* 15
+ * Create a row value expression of degree 15.
* 16
+ * Create a row value expression of degree 16.
* 17
+ * Create a row value expression of degree 17.
* 18
+ * Create a row value expression of degree 18.
* 19
+ * Create a row value expression of degree 19.
* 20
+ * Create a row value expression of degree 20.
* 21
+ * Create a row value expression of degree 21.
* 22
+ * Create a row value expression of degree 22.
* N > 8
+ * Create a row value expression of degree N > 22.
* 1
+ * Create a row value expression of degree 1.
* 2
+ * Create a row value expression of degree 2.
* 3
+ * Create a row value expression of degree 3.
* 4
+ * Create a row value expression of degree 4.
* 5
+ * Create a row value expression of degree 5.
* 6
+ * Create a row value expression of degree 6.
* 7
+ * Create a row value expression of degree 7.
* 8
+ * Create a row value expression of degree 8.
* 9
+ * Create a row value expression of degree 9.
* 10
+ * Create a row value expression of degree 10.
* 11
+ * Create a row value expression of degree 11.
* 12
+ * Create a row value expression of degree 12.
* 13
+ * Create a row value expression of degree 13.
* 14
+ * Create a row value expression of degree 14.
* 15
+ * Create a row value expression of degree 15.
* 16
+ * Create a row value expression of degree 16.
* 17
+ * Create a row value expression of degree 17.
* 18
+ * Create a row value expression of degree 18.
* 19
+ * Create a row value expression of degree 19.
* 20
+ * Create a row value expression of degree 20.
* 21
+ * Create a row value expression of degree 21.
* 22
+ * Create a row value expression of degree 22.
* N > 8
+ * Create a row value expression of degree N > 22.
* VALUES() expression of degree 1
+ * Create a VALUES() expression of degree 1.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7567,7 +7585,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 2
+ * Create a VALUES() expression of degree 2.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7599,7 +7617,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 3
+ * Create a VALUES() expression of degree 3.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7631,7 +7649,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 4
+ * Create a VALUES() expression of degree 4.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7663,7 +7681,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 5
+ * Create a VALUES() expression of degree 5.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7695,7 +7713,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 6
+ * Create a VALUES() expression of degree 6.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7727,7 +7745,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 7
+ * Create a VALUES() expression of degree 7.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7759,7 +7777,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 8
+ * Create a VALUES() expression of degree 8.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7791,7 +7809,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 9
+ * Create a VALUES() expression of degree 9.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7823,7 +7841,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 10
+ * Create a VALUES() expression of degree 10.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7855,7 +7873,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 11
+ * Create a VALUES() expression of degree 11.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7887,7 +7905,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 12
+ * Create a VALUES() expression of degree 12.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7919,7 +7937,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 13
+ * Create a VALUES() expression of degree 13.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7951,7 +7969,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 14
+ * Create a VALUES() expression of degree 14.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -7983,7 +8001,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 15
+ * Create a VALUES() expression of degree 15.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8015,7 +8033,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 16
+ * Create a VALUES() expression of degree 16.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8047,7 +8065,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 17
+ * Create a VALUES() expression of degree 17.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8079,7 +8097,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 18
+ * Create a VALUES() expression of degree 18.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8111,7 +8129,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 19
+ * Create a VALUES() expression of degree 19.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8143,7 +8161,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 20
+ * Create a VALUES() expression of degree 20.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8175,7 +8193,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 21
+ * Create a VALUES() expression of degree 21.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8207,7 +8225,7 @@ public class Factory {
}
/**
- * Create a VALUES() expression of degree 22
+ * Create a VALUES() expression of degree 22.
* VALUES() constructor is a tool supported by some
* databases to allow for constructing tables from constant values.
@@ -8245,21 +8263,21 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * Get the null field
+ * Get the null field.
*/
static Field> NULL() {
return field("null");
}
/**
- * Null-safety of a field
+ * Null-safety of a field.
*/
protected static E literal (Euler number)
+ * The E literal (Euler number).
*
@@ -8354,7 +8372,7 @@ public class Factory {
// -------------------------------------------------------------------------
/**
- * Get the current_user() function
+ * Get the current_user() function.
*