org.finra.herd.model.api.xml.JdbcStatementStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of herd-model-api-15 Show documentation
Show all versions of herd-model-api-15 Show documentation
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.
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);
}
}