Class FieldConfig
java.lang.Object
nablarch.common.databind.fixedlength.FieldConfig
フィールドの定義をあらわすクラス。
-
Field Summary
-
Constructor Summary
ConstructorDescriptionFieldConfig
(String name, int offset, int length, FieldConvert.FieldConverter fieldConverter) フィールド定義を構築する。 -
Method Summary
Modifier and TypeMethodDescriptionフィールドコンバータを返す。int
長さ(バイト数)を返す。getName()
フィールド名を返す。int
開始位置を返す。
-
Field Details
-
FILLER_FIELD_NAME
fillerを表すフィールド名- See Also:
-
-
Constructor Details
-
FieldConfig
フィールド定義を構築する。- Parameters:
name
- フィールド名offset
- 開始位置(1始まり)length
- 長さ(バイト数)fieldConverter
- 入出力時の変換を行うコンバータ
-
-
Method Details
-
getName
フィールド名を返す。- Returns:
- フィールド名
-
getOffset
public int getOffset()開始位置を返す。- Returns:
- 開始位置(1始まり)
-
getLength
public int getLength()長さ(バイト数)を返す。- Returns:
- 長さ(バイト数)
-
getFieldConverter
フィールドコンバータを返す。- Returns:
- フィールドコンバータ
-