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

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

The newest version!

package com.prowidesoftware.swift.model.mx.dic;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for CommunicationMethod2Code. * *

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

{@code
 * 
 *   
 *     
 *     
 *     
 *     
 *     
 *   
 * 
 * }
* */ @XmlType(name = "CommunicationMethod2Code") @XmlEnum public enum CommunicationMethod2Code { /** * Transmission by e-mail. * */ EMAL, /** * Transmission by fax. * */ FAXI, /** * Transmission by file transfer. * */ FILE, /** * Transmission on line, for example, in a web portal. * */ ONLI, /** * Transmission by postal service. * */ POST; public String value() { return name(); } public static CommunicationMethod2Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy