package org.jooq.conf;

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


Java class for ParseUnknownFunctions.

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

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