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

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

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

*

 * <simpleType name="PriceSource1Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="FUND"/>
 *     <enumeration value="THEO"/>
 *     <enumeration value="VEND"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "PriceSource1Code") @XmlEnum public enum PriceSource1Code { /** * Source of price quotation is a fund, eg, transfer agent, fund itself. * */ FUND, /** * Source of price quotation is a theoretical value based on the market yield. * */ THEO, /** * Source of price quotation is an external vendor. * */ VEND; public String value() { return name(); } public static PriceSource1Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy