com.prowidesoftware.swift.model.mx.dic.Trading1MethodCode Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for Trading1MethodCode.
*
*
The following schema fragment specifies the expected content contained within this class.
*
{@code
*
*
*
*
*
*
*
* }
*
*/
@XmlType(name = "Trading1MethodCode")
@XmlEnum
public enum Trading1MethodCode {
/**
* Trade executed through an electronic trading system.
*
*/
ELEC,
/**
* Trade executed over the phone.
*
*/
PHON,
/**
* Trade executed through a broker.
*
*/
BROK;
public String value() {
return name();
}
public static Trading1MethodCode fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy