From dd8bab2fcb3b0dbe36db63df3e5a9b70c2813208 Mon Sep 17 00:00:00 2001 From: lukaseder Date: Tue, 28 Jul 2015 11:07:44 +0200 Subject: [PATCH] [#4239] Added forgotten @param header Javadoc --- jOOQ/src/main/java/org/jooq/Result.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/Result.java b/jOOQ/src/main/java/org/jooq/Result.java index 3849f43800..3a7cf4c052 100644 --- a/jOOQ/src/main/java/org/jooq/Result.java +++ b/jOOQ/src/main/java/org/jooq/Result.java @@ -522,6 +522,7 @@ public interface Result extends List, Attachable { *

* This is the same as calling formatCSV(',', "") * + * @param header Whether to emit a CSV header line * @return The formatted result */ String formatCSV(boolean header); @@ -531,6 +532,7 @@ public interface Result extends List, Attachable { *

* This is the same as calling formatCSV(delimiter, "") * + * @param header Whether to emit a CSV header line * @param delimiter The delimiter to use between records * @return The formatted result */ @@ -539,6 +541,7 @@ public interface Result extends List, Attachable { /** * Get a simple formatted representation of this result as CSV. * + * @param header Whether to emit a CSV header line * @param delimiter The delimiter to use between records * @param nullString A special string for encoding NULL values. * @return The formatted result