package org.jooq.conf;

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


Java class for RenderKeywordCase.

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

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