set
Creates an ISOField associated with the given field number within this LrISOMsg.
public void set(LrISOField fldno, String value) throws LrISOException
public void set(int fldno, String value) throws LrISOException
public void set(LrISOField fldno, byte[] value) throws LrISOException
public void set(int fldno, byte[] value) throws LrISOException
Parameters
Parameter | Description |
---|---|
fldno | The field number. |
value | The field value in string or primitive byte array. |
Return values
This function does not return any values.
Example
LrISOMsg m = new LrISOMsg();
m.set(ISO87Fields.PAN_PRIMARY_ACCOUNT_NUMBER, "1234567891234567890");