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