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

generated.DesignationType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.09.30 at 11:45:12 AM EDT 
//


package generated;

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


/**
 * 

Java class for designationType. * *

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

*

 * <simpleType name="designationType">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}token">
 *     <enumeration value="UNCLASSIFIED"/>
 *     <enumeration value="BAD_ANALYSIS"/>
 *     <enumeration value="NOT_A_BUG"/>
 *     <enumeration value="MOSTLY_HARMLESS"/>
 *     <enumeration value="SHOULD_FIX"/>
 *     <enumeration value="MUST_FIX"/>
 *     <enumeration value="I_WILL_FIX"/>
 *     <enumeration value="OBSOLETE_CODE"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "designationType") @XmlEnum public enum DesignationType { UNCLASSIFIED, BAD_ANALYSIS, NOT_A_BUG, MOSTLY_HARMLESS, SHOULD_FIX, MUST_FIX, I_WILL_FIX, OBSOLETE_CODE; public String value() { return name(); } public static DesignationType fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy