public static enum Csv.CsvType extends java.lang.Enum<Csv.CsvType>
CsvDataBindConfig
のフォーマットを表す列挙型Enum Constant and Description |
---|
CUSTOM
カスタムのフォーマット定義
|
DEFAULT
デフォルトのフォーマット定義
|
EXCEL
EXCEL形式のCSVフォーマット定義
|
RFC4180
RFC4180準拠のフォーマット定義
|
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