com.prowidesoftware.swift.model.mx.dic.PINFormat4Code Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pw-iso20022 Show documentation
Show all versions of pw-iso20022 Show documentation
Prowide Library for ISO 20022 messages
The newest version!
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for PINFormat4Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "PINFormat4Code")
@XmlEnum
public enum PINFormat4Code {
/**
* ANSI 0 PIN block format.
*
*/
ANSI("ANSI"),
/**
* Italian Bancomat PIN block format.
*
*/
BNCM("BNCM"),
/**
* Banksys PIN block format.
*
*/
BKSY("BKSY"),
/**
* Diebold PIN block format.
*
*/
DBLD("DBLD"),
/**
* Diebold CO PIN block format.
*
*/
DBLC("DBLC"),
/**
* ECI2 PIN block format.
*
*/
@XmlEnumValue("ECI2")
ECI_2("ECI2"),
/**
* ECI3 PIN block format.
*
*/
@XmlEnumValue("ECI3")
ECI_3("ECI3"),
/**
* EMV ISO2 PIN block format encrypted with the EMV RSA cryptographic key for the PIN.
*
*/
EMVS("EMVS"),
/**
* IBM 3624 PIN block format.
*
*/
@XmlEnumValue("IBM3")
IBM_3("IBM3"),
/**
* PIN diversified with the card account number, conforming to the standard ISO 9564-2.
*
*/
@XmlEnumValue("ISO0")
ISO_0("ISO0"),
/**
* PIN completed with random padding characters, conforming to the standard ISO 9564-2.
*
*/
@XmlEnumValue("ISO1")
ISO_1("ISO1"),
/**
* PIN without diversification characters, conforming to the standard ISO 9564-2.
*
*/
@XmlEnumValue("ISO2")
ISO_2("ISO2"),
/**
* PIN diversified with the card account number and random characters, conforming to the standard ISO 9564-2.
*
*/
@XmlEnumValue("ISO3")
ISO_3("ISO3"),
/**
* PIN format used with AES encryption, conforming to the new ISO SC2 format.
*
*/
@XmlEnumValue("ISO4")
ISO_4("ISO4"),
/**
* Alternative PIN format used with AES encryption, conforming to the new ISO SC2 format.
*
*/
@XmlEnumValue("ISO5")
ISO_5("ISO5"),
/**
* VISA2 PIN block format.
*
*/
@XmlEnumValue("VIS2")
VIS_2("VIS2"),
/**
* VISA3 PIN block format.
*
*/
@XmlEnumValue("VIS3")
VIS_3("VIS3");
private final String value;
PINFormat4Code(String v) {
value = v;
}
public String value() {
return value;
}
public static PINFormat4Code fromValue(String v) {
for (PINFormat4Code c: PINFormat4Code.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy