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

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


package org.jooq.conf;

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


/**
 * 

Java class for ThrowExceptions. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy