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