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

org.bitbucket.openisoj.IField Maven / Gradle / Ivy

Go to download

An extensible framework for creating ISO 8583 messages. Ported from OpenIso.Net http://code.google.com/p/openiso8583net/

There is a newer version: 1.1.4
Show newest version
package org.bitbucket.openisoj;

public interface IField {
	public int getFieldNr();

	public int getPackedLength() throws Exception;

	public String getValue();

	public void setValue(String value);

	public byte[] toMsg() throws Exception;

	public String toString();

	public String toString(String prefix) throws Exception;

	public int unpack(byte[] msg, int offset) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy