package ru.codeinside.esia; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for TypeCodeType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="TypeCodeType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="GSRV"/> * <enumeration value="GFNC"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "TypeCodeType") @XmlEnum public enum TypeCodeType { GSRV, GFNC; public String value() { return name(); } public static TypeCodeType fromValue(String v) { return valueOf(v); } }