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