// Copyright 2017 Google Inc. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // package com.google.api.ads.adwords.lib.jaxb.v201702; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for Predicate.Operator. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="Predicate.Operator"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="EQUALS"/> * <enumeration value="NOT_EQUALS"/> * <enumeration value="IN"/> * <enumeration value="NOT_IN"/> * <enumeration value="GREATER_THAN"/> * <enumeration value="GREATER_THAN_EQUALS"/> * <enumeration value="LESS_THAN"/> * <enumeration value="LESS_THAN_EQUALS"/> * <enumeration value="STARTS_WITH"/> * <enumeration value="STARTS_WITH_IGNORE_CASE"/> * <enumeration value="CONTAINS"/> * <enumeration value="CONTAINS_IGNORE_CASE"/> * <enumeration value="DOES_NOT_CONTAIN"/> * <enumeration value="DOES_NOT_CONTAIN_IGNORE_CASE"/> * <enumeration value="CONTAINS_ANY"/> * <enumeration value="CONTAINS_ALL"/> * <enumeration value="CONTAINS_NONE"/> * <enumeration value="UNKNOWN"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "Predicate.Operator") @XmlEnum public enum PredicateOperator { EQUALS, NOT_EQUALS, IN, NOT_IN, GREATER_THAN, GREATER_THAN_EQUALS, LESS_THAN, LESS_THAN_EQUALS, STARTS_WITH, STARTS_WITH_IGNORE_CASE, CONTAINS, CONTAINS_IGNORE_CASE, DOES_NOT_CONTAIN, DOES_NOT_CONTAIN_IGNORE_CASE, CONTAINS_ANY, CONTAINS_ALL, CONTAINS_NONE, UNKNOWN; public String value() { return name(); } public static PredicateOperator fromValue(String v) { return valueOf(v); } }