com.google.api.ads.adwords.lib.jaxb.v201109
Enum PredicateOperator

java.lang.Object
  extended by java.lang.Enum<PredicateOperator>
      extended by com.google.api.ads.adwords.lib.jaxb.v201109.PredicateOperator
All Implemented Interfaces:
Serializable, Comparable<PredicateOperator>

public enum PredicateOperator
extends Enum<PredicateOperator>

Java class for Predicate.Operator.

The following schema fragment specifies the expected content contained within this class.

 <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="UNKNOWN"/>
   </restriction>
 </simpleType>
 


Enum Constant Summary
CONTAINS
           
CONTAINS_IGNORE_CASE
           
DOES_NOT_CONTAIN
           
DOES_NOT_CONTAIN_IGNORE_CASE
           
EQUALS
           
GREATER_THAN
           
GREATER_THAN_EQUALS
           
IN
           
LESS_THAN
           
LESS_THAN_EQUALS
           
NOT_EQUALS
           
NOT_IN
           
STARTS_WITH
           
STARTS_WITH_IGNORE_CASE
           
UNKNOWN
           
 
Method Summary
static PredicateOperator fromValue(String v)
           
 String value()
           
static PredicateOperator valueOf(String name)
          Returns the enum constant of this type with the specified name.
static PredicateOperator[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

EQUALS

public static final PredicateOperator EQUALS

NOT_EQUALS

public static final PredicateOperator NOT_EQUALS

IN

public static final PredicateOperator IN

NOT_IN

public static final PredicateOperator NOT_IN

GREATER_THAN

public static final PredicateOperator GREATER_THAN

GREATER_THAN_EQUALS

public static final PredicateOperator GREATER_THAN_EQUALS

LESS_THAN

public static final PredicateOperator LESS_THAN

LESS_THAN_EQUALS

public static final PredicateOperator LESS_THAN_EQUALS

STARTS_WITH

public static final PredicateOperator STARTS_WITH

STARTS_WITH_IGNORE_CASE

public static final PredicateOperator STARTS_WITH_IGNORE_CASE

CONTAINS

public static final PredicateOperator CONTAINS

CONTAINS_IGNORE_CASE

public static final PredicateOperator CONTAINS_IGNORE_CASE

DOES_NOT_CONTAIN

public static final PredicateOperator DOES_NOT_CONTAIN

DOES_NOT_CONTAIN_IGNORE_CASE

public static final PredicateOperator DOES_NOT_CONTAIN_IGNORE_CASE

UNKNOWN

public static final PredicateOperator UNKNOWN
Method Detail

values

public static PredicateOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (PredicateOperator c : PredicateOperator.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static PredicateOperator valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

value

public String value()

fromValue

public static PredicateOperator fromValue(String v)


Copyright © 2012. All Rights Reserved.