This is an automated email from the ASF dual-hosted git repository.
davsclaus pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git
The following commit(s) were added to refs/heads/main by this push:
new 0e93052d495c Regen
0e93052d495c is described below
commit 0e93052d495cff4ba91817602177699b05e07aad
Author: Claus Ibsen <[email protected]>
AuthorDate: Mon Aug 24 16:23:08 2026 +0200
Regen
---
.../org/apache/camel/component/sql/SqlOutputType.java | 18 +++++++++---------
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git
a/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlOutputType.java
b/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlOutputType.java
index c2f461501d6b..1e5ea3b45ee4 100644
---
a/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlOutputType.java
+++
b/components/camel-sql/src/main/java/org/apache/camel/component/sql/SqlOutputType.java
@@ -25,26 +25,26 @@ public enum SqlOutputType {
* Returns the result of the query as a single object.
* <p>
* If the query has only a single column, the value of that column is
returned (for example
- * {@code SELECT COUNT(*) FROM PROJECT} returns a {@link Long}). If the
query has more than one
- * column, a {@link java.util.Map} of the row is returned. If {@code
outputClass} is set, the row
- * is instead converted into a Java bean of that type by calling the
setters that match the column
- * names; the class must have a default constructor.
+ * {@code SELECT COUNT(*) FROM PROJECT} returns a {@link Long}). If the
query has more than one column, a
+ * {@link java.util.Map} of the row is returned. If {@code outputClass} is
set, the row is instead converted into a
+ * Java bean of that type by calling the setters that match the column
names; the class must have a default
+ * constructor.
* <p>
* If the query returns more than one row, a non-unique result exception
is thrown.
*/
SelectOne,
/**
- * Returns the result of the query as a {@link java.util.List} of {@link
java.util.Map}, one map per
- * row keyed by column name. If {@code outputClass} is set, each row is
instead converted into a Java
- * bean of that type by calling the setters that match the column names.
+ * Returns the result of the query as a {@link java.util.List} of {@link
java.util.Map}, one map per row keyed by
+ * column name. If {@code outputClass} is set, each row is instead
converted into a Java bean of that type by
+ * calling the setters that match the column names.
*/
SelectList,
/**
* Streams the result of the query using an {@link java.util.Iterator}, so
rows are read from the
- * {@link java.sql.ResultSet} lazily instead of being loaded into memory
all at once. This can be
- * combined with the Splitter EIP in streaming mode to process the result
set in a streaming fashion.
+ * {@link java.sql.ResultSet} lazily instead of being loaded into memory
all at once. This can be combined with the
+ * Splitter EIP in streaming mode to process the result set in a streaming
fashion.
*/
StreamList
}