Fix Javadoc @see's.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/csv/trunk@1695190 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2015-08-11 02:14:33 +00:00
parent aa0fbb01a0
commit d402786f14
1 changed files with 5 additions and 5 deletions

View File

@ -155,27 +155,27 @@ public final class CSVFormat implements Serializable {
public static enum Predefined {
/**
* @see CSVFormat#DEFAULT.
* @see CSVFormat#DEFAULT
*/
Default(CSVFormat.DEFAULT),
/**
* @see CSVFormat#EXCEL.
* @see CSVFormat#EXCEL
*/
Excel(CSVFormat.EXCEL),
/**
* @see CSVFormat#MYSQL.
* @see CSVFormat#MYSQL
*/
MySQL(CSVFormat.MYSQL),
/**
* @see CSVFormat#RFC4180.
* @see CSVFormat#RFC4180
*/
RFC4180(CSVFormat.RFC4180),
/**
* @see CSVFormat#TDF.
* @see CSVFormat#TDF
*/
TDF(CSVFormat.TDF);