package com.amalto.workbench.webservices; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for WSStringPredicate. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="WSStringPredicate"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="NONE"/> * <enumeration value="OR"/> * <enumeration value="AND"/> * <enumeration value="STRICTAND"/> * <enumeration value="EXACTLY"/> * <enumeration value="NOT"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "WSStringPredicate") @XmlEnum public enum WSStringPredicate { NONE, OR, AND, STRICTAND, EXACTLY, NOT; public String value() { return name(); } public static WSStringPredicate fromValue(String v) { return valueOf(v); } }