com.solab.iso8583.CustomFieldEncoder 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;
/**
* Defines the behavior of a custom field encoder, which will convert a value of some
* data type to a String.
*
* @author Enrique Zamudio
* Date: 2019-02-08 11:20
*/
public interface CustomFieldEncoder {
String encodeField(DataType value);
}