package org.jooq.conf;

import javax.xml.bind.annotation.XmlEnum;
import javax.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>
/** * <p>Java class for RenderQuotedNames. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="RenderQuotedNames"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; * &lt;enumeration value="ALWAYS"/&gt; * &lt;enumeration value="EXPLICIT_DEFAULT_QUOTED"/&gt; * &lt;enumeration value="EXPLICIT_DEFAULT_UNQUOTED"/&gt; * &lt;enumeration value="NEVER"/&gt; * &lt;/restriction&gt; * &lt;/simpleType&gt; * </pre> * */
@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); } }