public static enum CSVFormat.Predefined extends Enum<CSVFormat.Predefined>
| Enum Constant and Description |
|---|
Default |
Excel |
InformixUnload |
InformixUnloadCsv |
MongoDBCsv |
MongoDBTsv |
MySQL |
Oracle |
PostgreSQLCsv |
PostgreSQLText |
RFC4180 |
TDF |
| Modifier and Type | Method and Description |
|---|---|
CSVFormat |
getFormat()
Gets the format.
|
static CSVFormat.Predefined |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSVFormat.Predefined[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSVFormat.Predefined Default
CSVFormat.DEFAULTpublic static final CSVFormat.Predefined Excel
CSVFormat.EXCELpublic static final CSVFormat.Predefined InformixUnload
CSVFormat.INFORMIX_UNLOADpublic static final CSVFormat.Predefined InformixUnloadCsv
CSVFormat.INFORMIX_UNLOAD_CSVpublic static final CSVFormat.Predefined MongoDBCsv
CSVFormat.MONGODB_CSVpublic static final CSVFormat.Predefined MongoDBTsv
CSVFormat.MONGODB_TSVpublic static final CSVFormat.Predefined MySQL
CSVFormat.MYSQLpublic static final CSVFormat.Predefined Oracle
CSVFormat.ORACLEpublic static final CSVFormat.Predefined PostgreSQLCsv
CSVFormat.POSTGRESQL_CSVpublic static final CSVFormat.Predefined PostgreSQLText
CSVFormat.POSTGRESQL_CSVpublic static final CSVFormat.Predefined RFC4180
CSVFormat.RFC4180public static final CSVFormat.Predefined TDF
CSVFormat.TDFpublic static CSVFormat.Predefined[] values()
for (CSVFormat.Predefined c : CSVFormat.Predefined.values()) System.out.println(c);
public static CSVFormat.Predefined valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2005–2022 The Apache Software Foundation. All rights reserved.