Package nablarch.common.databind.csv
Enum CsvDataBindConfig.QuoteMode
java.lang.Object
java.lang.Enum<CsvDataBindConfig.QuoteMode>
nablarch.common.databind.csv.CsvDataBindConfig.QuoteMode
- All Implemented Interfaces:
Serializable
,Comparable<CsvDataBindConfig.QuoteMode>
,java.lang.constant.Constable
- Enclosing class:
- CsvDataBindConfig
出力時にフィールド囲み文字で囲むフィールドを指定するモードの定義。
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescription全てのフィールドが対象となるモードフィールドを任意に定義するモードフィールド囲み文字、フィールド区切り文字、改行が存在するフィールドが対象となるモード非数値型(Numberクラス以外)の型が対象となるモード -
Method Summary
Modifier and TypeMethodDescriptionstatic CsvDataBindConfig.QuoteMode
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.
-
Enum Constant Details
-
NORMAL
フィールド囲み文字、フィールド区切り文字、改行が存在するフィールドが対象となるモード -
ALL
全てのフィールドが対象となるモード -
NOT_NUMERIC
非数値型(Numberクラス以外)の型が対象となるモード -
CUSTOM
フィールドを任意に定義するモード
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-