package org.jooq.conf;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


Java class for RenderNameStyle.

The following schema fragment specifies the expected content contained within this class.

<simpleType name="RenderNameStyle">
  <restriction base="{http://www.w3.org/2001/XMLSchema}string">
    <enumeration value="QUOTED"/>
    <enumeration value="AS_IS"/>
    <enumeration value="LOWER"/>
    <enumeration value="UPPER"/>
  </restriction>
</simpleType>
/** * <p>Java class for RenderNameStyle. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * &lt;simpleType name="RenderNameStyle"&gt; * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string"&gt; * &lt;enumeration value="QUOTED"/&gt; * &lt;enumeration value="AS_IS"/&gt; * &lt;enumeration value="LOWER"/&gt; * &lt;enumeration value="UPPER"/&gt; * &lt;/restriction&gt; * &lt;/simpleType&gt; * </pre> * */
@XmlType(name = "RenderNameStyle") @XmlEnum @Deprecated public enum RenderNameStyle { QUOTED, AS_IS, LOWER, UPPER; public String value() { return name(); } public static RenderNameStyle fromValue(String v) { return valueOf(v); } }