package org.jooq.conf;

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


Java class for TransformUnneededArithmeticExpressions.

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

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