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:
parent
aa0fbb01a0
commit
d402786f14
|
@ -155,27 +155,27 @@ public final class CSVFormat implements Serializable {
|
||||||
public static enum Predefined {
|
public static enum Predefined {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see CSVFormat#DEFAULT.
|
* @see CSVFormat#DEFAULT
|
||||||
*/
|
*/
|
||||||
Default(CSVFormat.DEFAULT),
|
Default(CSVFormat.DEFAULT),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see CSVFormat#EXCEL.
|
* @see CSVFormat#EXCEL
|
||||||
*/
|
*/
|
||||||
Excel(CSVFormat.EXCEL),
|
Excel(CSVFormat.EXCEL),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see CSVFormat#MYSQL.
|
* @see CSVFormat#MYSQL
|
||||||
*/
|
*/
|
||||||
MySQL(CSVFormat.MYSQL),
|
MySQL(CSVFormat.MYSQL),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see CSVFormat#RFC4180.
|
* @see CSVFormat#RFC4180
|
||||||
*/
|
*/
|
||||||
RFC4180(CSVFormat.RFC4180),
|
RFC4180(CSVFormat.RFC4180),
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see CSVFormat#TDF.
|
* @see CSVFormat#TDF
|
||||||
*/
|
*/
|
||||||
TDF(CSVFormat.TDF);
|
TDF(CSVFormat.TDF);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue