// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2016.07.27 at 04:06:37 PM EDT // package us.gov.ic.cvenum.ism.classification.all; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CVEnumISMClassificationAll. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="CVEnumISMClassificationAll"> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="R"/> * <enumeration value="C"/> * <enumeration value="S"/> * <enumeration value="TS"/> * <enumeration value="U"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "CVEnumISMClassificationAll", namespace = "urn:us:gov:ic:cvenum:ism:classification:all") @XmlEnum public enum CVEnumISMClassificationAll { /** * (U) RESTRICTED * */ R, /** * (U) CONFIDENTIAL * */ C, /** * (U) SECRET * */ S, /** * (U) TOP SECRET * */ TS, /** * (U) UNCLASSIFIED * */ U; public String value() { return name(); } public static CVEnumISMClassificationAll fromValue(String v) { return valueOf(v); } }