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

com.prowidesoftware.swift.model.mx.dic.TradePosting1Code 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 TradePosting1Code. * *

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

*

 * <simpleType name="TradePosting1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="GROS"/>
 *     <enumeration value="NETT"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "TradePosting1Code") @XmlEnum public enum TradePosting1Code { /** * Trade is maintained as a separate individual position in the clearing account. * */ GROS, /** * Trade is maintained as a net position in the clearing account. * */ NETT; public String value() { return name(); } public static TradePosting1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy