You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by br...@apache.org on 2018/08/20 06:47:33 UTC

commons-csv git commit: Add missing predefined formats to class documentation

Repository: commons-csv
Updated Branches:
  refs/heads/master 39e8ee6f9 -> 3d4a7e671


Add missing predefined formats to class documentation


Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/3d4a7e67
Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/3d4a7e67
Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/3d4a7e67

Branch: refs/heads/master
Commit: 3d4a7e6716af61a5462d81aa355229d9a4b52ae3
Parents: 39e8ee6
Author: Benedikt Ritter <br...@apache.org>
Authored: Mon Aug 20 08:47:20 2018 +0200
Committer: Benedikt Ritter <br...@apache.org>
Committed: Mon Aug 20 08:47:20 2018 +0200

----------------------------------------------------------------------
 src/main/java/org/apache/commons/csv/CSVFormat.java | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-csv/blob/3d4a7e67/src/main/java/org/apache/commons/csv/CSVFormat.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java
index 10cc199..a0a83cc 100644
--- a/src/main/java/org/apache/commons/csv/CSVFormat.java
+++ b/src/main/java/org/apache/commons/csv/CSVFormat.java
@@ -58,8 +58,13 @@ import java.util.Set;
  * <ul>
  * <li>{@link #DEFAULT}</li>
  * <li>{@link #EXCEL}</li>
+ * <li>{@link #INFORMIX_UNLOAD}</li>
+ * <li>{@link #INFORMIX_UNLOAD_CSV}</li>
  * <li>{@link #MYSQL}</li>
  * <li>{@link #RFC4180}</li>
+ * <li>{@link #ORACLE}</li>
+ * <li>{@link #POSTGRESQL_CSV}</li>
+ * <li>{@link #POSTGRESQL_TEXT}</li>
  * <li>{@link #TDF}</li>
  * </ul>
  *