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

com.helger.holiday.jaxb.Which Maven / Gradle / Ivy


package com.helger.holiday.jaxb;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
import com.helger.commons.annotation.CodingStyleguideUnaware;


/**
 * 

Java class for Which. * *

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

*

 * <simpleType name="Which">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="FIRST"/>
 *     <enumeration value="SECOND"/>
 *     <enumeration value="THIRD"/>
 *     <enumeration value="LAST"/>
 *     <enumeration value="FOURTH"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "Which") @XmlEnum @CodingStyleguideUnaware public enum Which { FIRST, SECOND, THIRD, LAST, FOURTH; public String value() { return name(); } public static Which fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy