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