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

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

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

*

 * <simpleType name="Frequency6Code">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="YEAR"/>
 *     <enumeration value="MNTH"/>
 *     <enumeration value="QURT"/>
 *     <enumeration value="MIAN"/>
 *     <enumeration value="WEEK"/>
 *     <enumeration value="DAIL"/>
 *     <enumeration value="ADHO"/>
 *     <enumeration value="INDA"/>
 *     <enumeration value="FRTN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Frequency6Code") @XmlEnum public enum Frequency6Code { /** * 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. * */ QURT, /** * Event takes place every six months or two times a year. * */ MIAN, /** * Event takes place once a week. * */ WEEK, /** * Event takes place every day. * */ DAIL, /** * Event takes place on request or as necessary. * */ ADHO, /** * Event takes place several times a day. * */ INDA, /** * Event takes place every two weeks. * */ FRTN; public String value() { return name(); } public static Frequency6Code fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy