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

org.jooq.meta.jaxb.OnError Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version

package org.jooq.meta.jaxb;

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


/**
 * 

Java class for OnError. * *

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy