org.jooq.conf.RenderQuotedNames Maven / Gradle / Ivy
package org.jooq.conf;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for RenderQuotedNames.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="RenderQuotedNames">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="ALWAYS"/>
* <enumeration value="EXPLICIT_DEFAULT_QUOTED"/>
* <enumeration value="EXPLICIT_DEFAULT_UNQUOTED"/>
* <enumeration value="NEVER"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "RenderQuotedNames")
@XmlEnum
public enum RenderQuotedNames {
ALWAYS,
EXPLICIT_DEFAULT_QUOTED,
EXPLICIT_DEFAULT_UNQUOTED,
NEVER;
public String value() {
return name();
}
public static RenderQuotedNames fromValue(String v) {
return valueOf(v);
}
}