@Published public static enum CsvDataBindConfig.QuoteMode extends java.lang.Enum<CsvDataBindConfig.QuoteMode>
| Enum Constant and Description |
|---|
ALL
全てのフィールドが対象となるモード
|
CUSTOM
フィールドを任意に定義するモード
|
NORMAL
フィールド囲み文字、フィールド区切り文字、改行が存在するフィールドが対象となるモード
|
NOT_NUMERIC
非数値型(Numberクラス以外)の型が対象となるモード
|
| Modifier and Type | Method and Description |
|---|---|
static CsvDataBindConfig.QuoteMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CsvDataBindConfig.QuoteMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CsvDataBindConfig.QuoteMode NORMAL
public static final CsvDataBindConfig.QuoteMode ALL
public static final CsvDataBindConfig.QuoteMode NOT_NUMERIC
public static final CsvDataBindConfig.QuoteMode CUSTOM
public static CsvDataBindConfig.QuoteMode[] values()
for (CsvDataBindConfig.QuoteMode c : CsvDataBindConfig.QuoteMode.values()) System.out.println(c);
public static CsvDataBindConfig.QuoteMode 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 null