Package nablarch.test.core.reader
Enum Class DataType
- All Implemented Interfaces:
Serializable
,Comparable<DataType>
,Constable
データタイプ定義クラス。
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionデフォルトのデータタイプ(どのタイプにも属さないことを意味する。)期待値を示すテーブルデータ(更新用) 省略されたカラムにはデフォルト値が設定される。期待値を示す固定長ファイル要求電文(本文)の期待値を示す固定長ファイル要求電文(ヘッダ)の期待値を示す固定長ファイル期待値を示すテーブルデータ期待値を示す固定長ファイルList<Map<String, String>形式のデータ。
SqlResultSetとの比較等に用いる。メッセージ応答電文(本文)を示す固定長ファイル応答電文(ヘッダ)を示す固定長ファイル事前準備用の固定長ファイル事前準備用のテーブルデータ事前準備用の固定長ファイル -
Method Summary
-
Enum Constant Details
-
DEFAULT
デフォルトのデータタイプ(どのタイプにも属さないことを意味する。) -
SETUP_TABLE_DATA
事前準備用のテーブルデータ -
EXPECTED_TABLE_DATA
期待値を示すテーブルデータ -
EXPECTED_COMPLETED
期待値を示すテーブルデータ(更新用) 省略されたカラムにはデフォルト値が設定される。 -
LIST_MAP
List<Map<String, String>形式のデータ。
SqlResultSetとの比較等に用いる。 -
SETUP_FIXED
事前準備用の固定長ファイル -
EXPECTED_FIXED
期待値を示す固定長ファイル -
SETUP_VARIABLE
事前準備用の固定長ファイル -
EXPECTED_VARIABLE
期待値を示す固定長ファイル -
MESSAGE
メッセージ -
EXPECTED_REQUEST_HEADER_MESSAGES
要求電文(ヘッダ)の期待値を示す固定長ファイル -
EXPECTED_REQUEST_BODY_MESSAGES
要求電文(本文)の期待値を示す固定長ファイル -
RESPONSE_HEADER_MESSAGES
応答電文(ヘッダ)を示す固定長ファイル -
RESPONSE_BODY_MESSAGES
応答電文(本文)を示す固定長ファイル
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
getType
public int getType()データタイプを取得する。- Returns:
- データタイプ
-
getName
データ名を取得する。- Returns:
- データ名
-