// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4 // 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: 2014.01.21 at 01:10:09 AM CET // package cz.cas.lib.proarc.nsesss2; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for tSkartacniZnak. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="tSkartacniZnak"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="A"/> * <enumeration value="S"/> * <enumeration value="V"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "tSkartacniZnak", namespace = "http://www.mvcr.cz/nsesss/v2") @XmlEnum public enum TSkartacniZnak { A, S, V; public String value() { return name(); } public static TSkartacniZnak fromValue(String v) { return valueOf(v); } }