All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jooq.conf.ParseWithMetaLookups Maven / Gradle / Ivy


package org.jooq.conf;

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


/**
 * 

Java class for ParseWithMetaLookups. * *

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

 * <simpleType name="ParseWithMetaLookups">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OFF"/>
 *     <enumeration value="IGNORE_ON_FAILURE"/>
 *     <enumeration value="THROW_ON_FAILURE"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ParseWithMetaLookups") @XmlEnum public enum ParseWithMetaLookups { OFF, IGNORE_ON_FAILURE, THROW_ON_FAILURE; public String value() { return name(); } public static ParseWithMetaLookups fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy