public final enum

Operator

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.clarizen.api.queries.Operator

Class Overview

Java class for Operator.

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

 <simpleType name="Operator">
   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
     <enumeration value="Equal"/>
     <enumeration value="NotEqual"/>
     <enumeration value="LessThan"/>
     <enumeration value="GreaterThan"/>
     <enumeration value="LessThanOrEqual"/>
     <enumeration value="GreaterThanOrEqual"/>
     <enumeration value="BeginsWith"/>
     <enumeration value="EndsWith"/>
     <enumeration value="Contains"/>
     <enumeration value="DoesNotContain"/>
     <enumeration value="In"/>
   </restriction>
 </simpleType>
 

Summary

Enum Values
Operator  BEGINS_WITH   
Operator  CONTAINS   
Operator  DOES_NOT_CONTAIN   
Operator  ENDS_WITH   
Operator  EQUAL   
Operator  GREATER_THAN   
Operator  GREATER_THAN_OR_EQUAL   
Operator  IN  In is only supported in compare operations where the left side is a FieldExpression which represents a "reference to entity" field and the right side is a QueryExpression  
Operator  LESS_THAN   
Operator  LESS_THAN_OR_EQUAL   
Operator  NOT_EQUAL   
Fields
private final String value
[Expand]
Inherited Fields
From class java.lang.Enum
Public Methods
static Operator fromValue(String v)
String value()
static Operator valueOf(String name)
final static Operator[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final Operator BEGINS_WITH

public static final Operator CONTAINS

public static final Operator DOES_NOT_CONTAIN

public static final Operator ENDS_WITH

public static final Operator EQUAL

public static final Operator GREATER_THAN

public static final Operator GREATER_THAN_OR_EQUAL

public static final Operator IN

In is only supported in compare operations where the left side is a FieldExpression which represents a "reference to entity" field and the right side is a QueryExpression

public static final Operator LESS_THAN

public static final Operator LESS_THAN_OR_EQUAL

public static final Operator NOT_EQUAL

Fields

private final String value

Public Methods

public static Operator fromValue (String v)

Parameters
v

public String value ()

public static Operator valueOf (String name)

Parameters
name

public static final Operator[] values ()