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

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

There is a newer version: SRU2024-10.2.6
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 EventFrequency3Code. * *

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

*

 * <simpleType name="EventFrequency3Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="YEAR"/>
 *     <enumeration value="MNTH"/>
 *     <enumeration value="QUTR"/>
 *     <enumeration value="SEMI"/>
 *     <enumeration value="WEEK"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "EventFrequency3Code") @XmlEnum public enum EventFrequency3Code { /** * Event takes place every year or once a year. * */ YEAR, /** * Event takes place every month or once a month. * */ MNTH, /** * Event takes place every three months or four times a year. * */ QUTR, /** * Event takes place every six months or two times a year. * */ SEMI, /** * Event takes place once a week. * */ WEEK; public String value() { return name(); } public static EventFrequency3Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy