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

com.prowidesoftware.swift.model.mx.dic.EncryptionFormat2Code Maven / Gradle / Ivy

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 EncryptionFormat2Code. * *

The following schema fragment specifies the expected content contained within this class. *

{@code
 * 
 *   
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "EncryptionFormat2Code") @XmlEnum public enum EncryptionFormat2Code { /** * Format of a cryptographic key specified by the ANSI X9 TR-31 standard. * */ @XmlEnumValue("TR31") TR_31("TR31"), /** * Format of a cryptographic key specified by the ANSI X9 TR-34 standard. * */ @XmlEnumValue("TR34") TR_34("TR34"), /** * Format of a cryptographic key specified by the ISO20038 standard. * */ @XmlEnumValue("I238") I_238("I238"); private final String value; EncryptionFormat2Code(String v) { value = v; } public String value() { return value; } public static EncryptionFormat2Code fromValue(String v) { for (EncryptionFormat2Code c: EncryptionFormat2Code.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy