Enum Class Csv.CsvType

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

public static enum Csv.CsvType extends Enum<Csv.CsvType>
CsvDataBindConfigのフォーマットを表す列挙型
  • Enum Constant Details

    • DEFAULT

      public static final Csv.CsvType DEFAULT
      デフォルトのフォーマット定義
    • RFC4180

      public static final Csv.CsvType RFC4180
      RFC4180準拠のフォーマット定義
    • EXCEL

      public static final Csv.CsvType EXCEL
      EXCEL形式のCSVフォーマット定義
    • TSV

      public static final Csv.CsvType TSV
      タブ区切り(TSV)のフォーマット定義
    • CUSTOM

      public static final Csv.CsvType CUSTOM
      カスタムのフォーマット定義
  • Method Details

    • values

      public static Csv.CsvType[] 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 Csv.CsvType 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
    • getConfig

      public abstract DataBindConfig getConfig()
      列挙子に紐づくCsvDataBindConfigを取得する。
      Returns:
      CsvDataBindConfig