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

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

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

*

 * <simpleType name="EventFrequency5Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="YEAR"/>
 *     <enumeration value="SEMI"/>
 *     <enumeration value="QUTR"/>
 *     <enumeration value="MNTH"/>
 *     <enumeration value="WEEK"/>
 *     <enumeration value="DAIL"/>
 *     <enumeration value="CLOS"/>
 *     <enumeration value="TOMN"/>
 *     <enumeration value="TOWK"/>
 *     <enumeration value="TWMN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "EventFrequency5Code") @XmlEnum public enum EventFrequency5Code { /** * Event takes place every year or once a year. * */ YEAR, /** * Event takes place every six months or two times a year. * */ SEMI, /** * Event takes place every three months or four times a year. * */ QUTR, /** * Event takes place every month or once a month. * */ MNTH, /** * Event takes place once a week. * */ WEEK, /** * Event takes place every day. * */ DAIL, /** * Event cannot take place, because, for example, the fund is closed. * */ CLOS, /** * Event takes place every two months. * */ TOMN, /** * Event takes place every two weeks. * */ TOWK, /** * Event takes place two times a month. * */ TWMN; public String value() { return name(); } public static EventFrequency5Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy