package echosign.api.clientv20.dto19; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for RadioCheckType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="RadioCheckType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="CIRCLE"/> * <enumeration value="CHECK"/> * <enumeration value="CROSS"/> * <enumeration value="DIAMOND"/> * <enumeration value="SQUARE"/> * <enumeration value="STAR"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "RadioCheckType") @XmlEnum public enum RadioCheckType { CIRCLE, CHECK, CROSS, DIAMOND, SQUARE, STAR; public String value() { return name(); } public static RadioCheckType fromValue(String v) { return valueOf(v); } }