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