public static enum Csv.CsvType extends java.lang.Enum<Csv.CsvType>
CsvDataBindConfigのフォーマットを表す列挙型| Enum Constant and Description | 
|---|
| CUSTOMカスタムのフォーマット定義 | 
| DEFAULTデフォルトのフォーマット定義 | 
| EXCELEXCEL形式のCSVフォーマット定義 | 
| RFC4180RFC4180準拠のフォーマット定義 | 
| TSVタブ区切り(TSV)のフォーマット定義 | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract DataBindConfig | getConfig()列挙子に紐づく CsvDataBindConfigを取得する。 | 
| static Csv.CsvType | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static Csv.CsvType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Csv.CsvType DEFAULT
public static final Csv.CsvType RFC4180
public static final Csv.CsvType EXCEL
public static final Csv.CsvType TSV
public static final Csv.CsvType CUSTOM
public static Csv.CsvType[] values()
for (Csv.CsvType c : Csv.CsvType.values()) System.out.println(c);
public static Csv.CsvType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic abstract DataBindConfig getConfig()
CsvDataBindConfigを取得する。CsvDataBindConfig