
com.prowidesoftware.swift.model.mx.dic.TradingCapacity5Code Maven / Gradle / Ivy
package com.prowidesoftware.swift.model.mx.dic;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for TradingCapacity5Code.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="TradingCapacity5Code">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="PRIN"/>
* <enumeration value="RISP"/>
* <enumeration value="AGEN"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TradingCapacity5Code")
@XmlEnum
public enum TradingCapacity5Code {
/**
* Trading as Principal.
*
*/
PRIN,
/**
* Trading as a riskless principal, ie, the order to buy(sell) has been simultaneously offset by an order to sell (buy) with another party.
*
*/
RISP,
/**
* Trading as Agent on behalf of a customer.
*
*/
AGEN;
public String value() {
return name();
}
public static TradingCapacity5Code fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy