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

org.finra.herd.model.api.xml.JdbcStatementStatus Maven / Gradle / Ivy

Go to download

This project contains the model API classes compiled for JDK 1.5 and above. This project depends on herd-model-api and should not contain any actual files.

There is a newer version: 0.160.0
Show newest version

package org.finra.herd.model.api.xml;

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


/**
 * 

Java class for jdbcStatementStatus. * *

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

*

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy