com.solab.iso8583.CustomFieldDecoder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j8583 Show documentation
Show all versions of j8583 Show documentation
Java implementation of the ISO 8583 protocol, focused on making the creation, edition and reading of ISO8583 messages as simple and flexible as possible.
package com.solab.iso8583;
/**
* A functional interface to decode a value from a field (string or binary data) into some
* other data type.
*
* @author Enrique Zamudio
* Date: 2019-02-08 11:21
*/
public interface CustomFieldDecoder {
DataType decodeField(String value);
}