@Immutable @PublicApi public enum

Operator

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ com.atlassian.query.operator.Operator

@PublicApi

This enum is designed for plugins to consume (call its methods).

Clients of @PublicApi can expect that programs compiled against a given version will remain binary compatible with later versions of the @PublicApi as per each product's API policy as long as the client does not implement/extend @PublicApi interfaces or classes (refer to each product's API policy for the exact guarantee---usually binary compatibility is guaranteed at least across minor versions).

Note: since @PublicApi interfaces and classes are not designed to be implemented or extended by clients, we may perform certain types of binary-incompatible changes to these classes and interfaces, but these will not affect well-behaved clients that do not extend/implement these types (in general, only classes and interfaces annotated with @PublicSpi are safe to extend/implement).

Class Overview

Represents the query operators.

Summary

Enum Values
Operator  AFTER   
Operator  BEFORE   
Operator  BY   
Operator  CHANGED   
Operator  DURING   
Operator  EQUALS   
Operator  FROM   
Operator  GREATER_THAN   
Operator  GREATER_THAN_EQUALS   
Operator  IN   
Operator  IS   
Operator  IS_NOT   
Operator  LESS_THAN   
Operator  LESS_THAN_EQUALS   
Operator  LIKE   
Operator  NOT_CHANGED   
Operator  NOT_EQUALS   
Operator  NOT_IN   
Operator  NOT_LIKE   
Operator  ON   
Operator  TO   
Operator  WAS   
Operator  WAS_IN   
Operator  WAS_NOT   
Operator  WAS_NOT_IN   
Public Methods
String getDisplayString()
abstract <T> Predicate<T> getPredicateForValue(Comparator<? super T> comparator, T operand)
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 AFTER

public static final Operator BEFORE

public static final Operator BY

public static final Operator CHANGED

public static final Operator DURING

public static final Operator EQUALS

public static final Operator FROM

public static final Operator GREATER_THAN

public static final Operator GREATER_THAN_EQUALS

public static final Operator IN

public static final Operator IS

public static final Operator IS_NOT

public static final Operator LESS_THAN

public static final Operator LESS_THAN_EQUALS

public static final Operator LIKE

public static final Operator NOT_CHANGED

public static final Operator NOT_EQUALS

public static final Operator NOT_IN

public static final Operator NOT_LIKE

public static final Operator ON

public static final Operator TO

public static final Operator WAS

public static final Operator WAS_IN

public static final Operator WAS_NOT

public static final Operator WAS_NOT_IN

Public Methods

public String getDisplayString ()

public abstract Predicate<T> getPredicateForValue (Comparator<? super T> comparator, T operand)

public static Operator valueOf (String name)

public static final Operator[] values ()