// // 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.complieswith; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for CVEnumISMCompliesWithValues. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="CVEnumISMCompliesWithValues"> * <restriction base="{http://www.w3.org/2001/XMLSchema}token"> * <enumeration value="USGov"/> * <enumeration value="USIC"/> * <enumeration value="USDOD"/> * <enumeration value="OtherAuthority"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "CVEnumISMCompliesWithValues", namespace = "urn:us:gov:ic:cvenum:ism:complieswith") @XmlEnum public enum CVEnumISMCompliesWithValues { /** * (U) Document claims compliance with all rules encoded in ISM for * documents produced by the US Federal Government. This is the minimum set of rules * for US documents to adhere to, and all US documents should claim compliance with * USGov. For example, a US Intelligence Community document should claim * ism:compliesWith="USGov USIC". * */ @XmlEnumValue("USGov") US_GOV("USGov"), /** * (U) Document claims compliance with all rules encoded in ISM for * documents produced by the US Intelligence Community. Documents that claim compliance * with USIC MUST also claim compliance with USGov. * */ USIC("USIC"), /** * (U) Document claims compliance with all rules encoded in ISM for * documents produced by the US Department of Defense. Documents that claim compliance * with USDOD MUST also claim compliance with USGov. * */ USDOD("USDOD"), /** * (U) Document claims compliance with an authority other than the * USGov, USIC, or USDOD. This token is not allowed if the ism:ownerProducer contains * USA. * */ @XmlEnumValue("OtherAuthority") OTHER_AUTHORITY("OtherAuthority"); private final String value; CVEnumISMCompliesWithValues(String v) { value = v; } public String value() { return value; } public static CVEnumISMCompliesWithValues fromValue(String v) { for (CVEnumISMCompliesWithValues c: CVEnumISMCompliesWithValues.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }