com.helger.holiday.jaxb.When 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 When.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="When">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="BEFORE"/>
* <enumeration value="AFTER"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "When")
@XmlEnum
@CodingStyleguideUnaware
public enum When {
BEFORE,
AFTER;
public String value() {
return name();
}
public static When fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy