Enum Class DataType

java.lang.Object
java.lang.Enum<DataType>
nablarch.test.core.reader.DataType
All Implemented Interfaces:
Serializable, Comparable<DataType>, Constable

public enum DataType extends Enum<DataType>
データタイプ定義クラス。
  • Enum Constant Details

    • DEFAULT

      public static final DataType DEFAULT
      デフォルトのデータタイプ(どのタイプにも属さないことを意味する。)
    • SETUP_TABLE_DATA

      public static final DataType SETUP_TABLE_DATA
      事前準備用のテーブルデータ
    • EXPECTED_TABLE_DATA

      public static final DataType EXPECTED_TABLE_DATA
      期待値を示すテーブルデータ
    • EXPECTED_COMPLETED

      public static final DataType EXPECTED_COMPLETED
      期待値を示すテーブルデータ(更新用) 省略されたカラムにはデフォルト値が設定される。
    • LIST_MAP

      public static final DataType LIST_MAP
      List<Map<String, String>形式のデータ。
      SqlResultSetとの比較等に用いる。
    • SETUP_FIXED

      public static final DataType SETUP_FIXED
      事前準備用の固定長ファイル
    • EXPECTED_FIXED

      public static final DataType EXPECTED_FIXED
      期待値を示す固定長ファイル
    • SETUP_VARIABLE

      public static final DataType SETUP_VARIABLE
      事前準備用の固定長ファイル
    • EXPECTED_VARIABLE

      public static final DataType EXPECTED_VARIABLE
      期待値を示す固定長ファイル
    • MESSAGE

      public static final DataType MESSAGE
      メッセージ
    • EXPECTED_REQUEST_HEADER_MESSAGES

      public static final DataType EXPECTED_REQUEST_HEADER_MESSAGES
      要求電文(ヘッダ)の期待値を示す固定長ファイル
    • EXPECTED_REQUEST_BODY_MESSAGES

      public static final DataType EXPECTED_REQUEST_BODY_MESSAGES
      要求電文(本文)の期待値を示す固定長ファイル
    • RESPONSE_HEADER_MESSAGES

      public static final DataType RESPONSE_HEADER_MESSAGES
      応答電文(ヘッダ)を示す固定長ファイル
    • RESPONSE_BODY_MESSAGES

      public static final DataType RESPONSE_BODY_MESSAGES
      応答電文(本文)を示す固定長ファイル
  • Method Details

    • values

      public static DataType[] 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 DataType 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
    • getType

      public int getType()
      データタイプを取得する。
      Returns:
      データタイプ
    • getName

      public String getName()
      データ名を取得する。
      Returns:
      データ名