Enum Class CsvDataBindConfig.QuoteMode

java.lang.Object
java.lang.Enum<CsvDataBindConfig.QuoteMode>
nablarch.common.databind.csv.CsvDataBindConfig.QuoteMode
All Implemented Interfaces:
Serializable, Comparable<CsvDataBindConfig.QuoteMode>, Constable
Enclosing class:
CsvDataBindConfig

@Published public static enum CsvDataBindConfig.QuoteMode extends Enum<CsvDataBindConfig.QuoteMode>
出力時にフィールド囲み文字で囲むフィールドを指定するモードの定義。
  • Enum Constant Details

    • NORMAL

      public static final CsvDataBindConfig.QuoteMode NORMAL
      フィールド囲み文字、フィールド区切り文字、改行が存在するフィールドが対象となるモード
    • ALL

      public static final CsvDataBindConfig.QuoteMode ALL
      全てのフィールドが対象となるモード
    • NOT_NUMERIC

      public static final CsvDataBindConfig.QuoteMode NOT_NUMERIC
      非数値型(Numberクラス以外)の型が対象となるモード
    • CUSTOM

      public static final CsvDataBindConfig.QuoteMode CUSTOM
      フィールドを任意に定義するモード
  • Method Details

    • values

      public static CsvDataBindConfig.QuoteMode[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static CsvDataBindConfig.QuoteMode valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null