org.biopax.validator.jaxb.Behavior Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of paxtools-console Show documentation
Show all versions of paxtools-console Show documentation
Paxtools Console Application and Examples
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.05.19 at 10:56:42 PM EDT
//
package org.biopax.validator.jaxb;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for Behavior.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="Behavior">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="IGNORE"/>
* <enumeration value="WARNING"/>
* <enumeration value="ERROR"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "Behavior")
@XmlEnum
public enum Behavior {
IGNORE,
WARNING,
ERROR;
public String value() {
return name();
}
public static Behavior fromValue(String v) {
return valueOf(v);
}
}