@Published(tag="architect")
public static interface FieldConvert.FieldConverter<T>
| Modifier and Type | Method and Description |
|---|---|
java.lang.Object |
convertOfRead(nablarch.common.databind.fixedlength.FixedLengthDataBindConfig fixedLengthDataBindConfig,
nablarch.common.databind.fixedlength.FieldConfig fieldConfig,
byte[] input)
読み込み時の変換を行う。
|
byte[] |
convertOfWrite(nablarch.common.databind.fixedlength.FixedLengthDataBindConfig fixedLengthDataBindConfig,
nablarch.common.databind.fixedlength.FieldConfig fieldConfig,
java.lang.Object output)
書き込み時の変換を行う。
|
void |
initialize(T annotation)
アノテーションの設定値をもとに初期化を行う。
|
void initialize(T annotation)
annotation - アノテーションjava.lang.Object convertOfRead(nablarch.common.databind.fixedlength.FixedLengthDataBindConfig fixedLengthDataBindConfig,
nablarch.common.databind.fixedlength.FieldConfig fieldConfig,
byte[] input)
fixedLengthDataBindConfig - 固定長の設定fieldConfig - フィールドの設定input - 入力値byte[] convertOfWrite(nablarch.common.databind.fixedlength.FixedLengthDataBindConfig fixedLengthDataBindConfig,
nablarch.common.databind.fixedlength.FieldConfig fieldConfig,
java.lang.Object output)
fixedLengthDataBindConfig - 固定長の設定fieldConfig - フィールドの設定output - 出力値