Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 921 Bytes

length-packer.md

File metadata and controls

17 lines (14 loc) · 921 Bytes

Length Packer

Some MsgFields have defined the LEN subfield, see the field-types.md page. These LEN subfields may have many different formats. The following implementations of the LengthPacker interface transform LEN subfield into different formats:

  • com.credibledoc.iso8583packer.asciihex.AsciiLengthPacker
  • com.credibledoc.iso8583packer.bcd.BcdLengthPacker
  • com.credibledoc.iso8583packer.binary.BinaryLengthPacker
  • com.credibledoc.iso8583packer.ebcdic.EbcdicDecimalLengthPacker
  • com.credibledoc.iso8583packer.hex.HexLengthPacker

Description of some implementations: