All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.solab.iso8583.parse.BcdLengthLllbinParseInfo Maven / Gradle / Ivy

Go to download

Java implementation of the ISO 8583 protocol, focused on making the creation, edition and reading of ISO8583 messages as simple and flexible as possible.

There is a newer version: 2.0.0
Show newest version
package com.solab.iso8583.parse;

import com.solab.iso8583.IsoType;

/**
 * Custom class to parse fields of type LLLBCDBIN with BCD length.
 */
public class BcdLengthLllbinParseInfo extends LllbinParseInfo {

    public BcdLengthLllbinParseInfo() {
        super(IsoType.LLLBCDBIN, 0);
    }

    @Override
    protected int getLengthForBinaryParsing(byte[] buf, int pos) {
        final int length = super.getLengthForBinaryParsing(buf, pos);
        return length % 2 == 0 ? length / 2 : (length / 2) + 1;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy