org.jooq.util.xml.jaxb.TriggerActionOrientation Maven / Gradle / Ivy
The newest version!
package org.jooq.util.xml.jaxb;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for TriggerActionOrientation.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="TriggerActionOrientation">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ROW"/>
* <enumeration value="STATEMENT"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "TriggerActionOrientation")
@XmlEnum
public enum TriggerActionOrientation {
ROW,
STATEMENT;
public String value() {
return name();
}
public static TriggerActionOrientation fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy