com.imohsenb.ISO8583.enums.VERSION Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ISO8583 Show documentation
Show all versions of ISO8583 Show documentation
ISO8583 Message Packer and Unpakcer with ISOClient for communication with iso server
The newest version!
package com.imohsenb.ISO8583.enums;
/**
* @author Mohsen Beiranvand
*/
public enum VERSION {
V1987("0"),
V1993("1"),
V2003("2");
private final String code;
VERSION(String versionCode) {
this.code = versionCode;
}
public String getCode() {
return code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy