// // 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.notice; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CVEnumISMNoticeValues. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="CVEnumISMNoticeValues"> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="FISA"/> * <enumeration value="IMC"/> * <enumeration value="CNWDI"/> * <enumeration value="RD"/> * <enumeration value="FRD"/> * <enumeration value="DS"/> * <enumeration value="LES"/> * <enumeration value="LES-NF"/> * <enumeration value="DSEN"/> * <enumeration value="DoD-Dist-A"/> * <enumeration value="DoD-Dist-B"/> * <enumeration value="DoD-Dist-C"/> * <enumeration value="DoD-Dist-D"/> * <enumeration value="DoD-Dist-E"/> * <enumeration value="DoD-Dist-F"/> * <enumeration value="DoD-Dist-X"/> * <enumeration value="US-Person"/> * <enumeration value="pre13526ORCON"/> * <enumeration value="POC"/> * <enumeration value="COMSEC"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "CVEnumISMNoticeValues", namespace = "urn:us:gov:ic:cvenum:ism:notice") @XmlEnum public enum CVEnumISMNoticeValues { /** * (U) FISA Warning statement * */ FISA("FISA"), /** * (U) IMCON Warning statement * */ IMC("IMC"), /** * (U) Controled Nuclear Weapon Design Information Warning statement * */ CNWDI("CNWDI"), /** * (U) RD Warning statement * */ RD("RD"), /** * (U) FRD Warning statement * */ FRD("FRD"), /** * (U) LIMDIS caveat * */ DS("DS"), /** * (U) LES Notice * */ LES("LES"), /** * (U) LES-NF Notice * */ @XmlEnumValue("LES-NF") LES_NF("LES-NF"), /** * (U) DSEN Notice * */ DSEN("DSEN"), /** * (U) DoD Distribution statement A from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-A") DO_D_DIST_A("DoD-Dist-A"), /** * (U) DoD Distribution statement B from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-B") DO_D_DIST_B("DoD-Dist-B"), /** * (U) DoD Distribution statement C from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-C") DO_D_DIST_C("DoD-Dist-C"), /** * (U) DoD Distribution statement D from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-D") DO_D_DIST_D("DoD-Dist-D"), /** * (U) DoD Distribution statement E from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-E") DO_D_DIST_E("DoD-Dist-E"), /** * (U) DoD Distribution statement F from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-F") DO_D_DIST_F("DoD-Dist-F"), /** * (U) DoD Distribution statement X from DoD Directive 5230.24 * */ @XmlEnumValue("DoD-Dist-X") DO_D_DIST_X("DoD-Dist-X"), /** * (U) US Person info Notice * */ @XmlEnumValue("US-Person") US_PERSON("US-Person"), /** * (U) Indicates that an instance document must abide by rules pertaining to ORIGINATOR CONTROLLED data issued prior to Executive Order 13526. * */ @XmlEnumValue("pre13526ORCON") PRE_13526_ORCON("pre13526ORCON"), /** * (U) Indicates that the contents of this notice specify the contact information for a required point-of-contact. * */ POC("POC"), /** * (U) COMSEC Notice * */ COMSEC("COMSEC"); private final String value; CVEnumISMNoticeValues(String v) { value = v; } public String value() { return value; } public static CVEnumISMNoticeValues fromValue(String v) { for (CVEnumISMNoticeValues c: CVEnumISMNoticeValues.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }