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