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

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

There is a newer version: SRU2024-10.2.4
Show newest version

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

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


/**
 * 

Java class for ClearingSide1Code. * *

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

*

 * <simpleType name="ClearingSide1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="BUYI"/>
 *     <enumeration value="SELL"/>
 *     <enumeration value="LEND"/>
 *     <enumeration value="BORW"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ClearingSide1Code") @XmlEnum public enum ClearingSide1Code { /** * Clearing member is on the buying side. * */ BUYI, /** * Clearing member is on the selling side. * */ SELL, /** * Clearing member is on the lending side. * */ LEND, /** * Clearing member is on the borrowing side. * */ BORW; public String value() { return name(); } public static ClearingSide1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy