@GwtCompatible public enum FilterOperator extends java.lang.Enum<FilterOperator>
Enumeration of existing filter expression operators.
Enum Constant and Description |
---|
BETWEEN |
ENDS_WITH |
EQUALS |
GREATER_EQUALS_THAN |
GREATER_THAN |
IN |
INCLUDES |
IS_NULL |
LESS_EQUALS_THAN |
LESS_THAN |
NOT_ENDS_WITH |
NOT_EQUALS |
NOT_IN |
NOT_INCLUDES |
NOT_NULL |
NOT_STARTS_WITH |
STARTS_WITH |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
LOCAL_PART |
static javax.xml.namespace.QName |
QNAME |
Modifier and Type | Method and Description |
---|---|
static FilterOperator |
get(java.lang.String symbol) |
static FilterOperator |
getById(byte b) |
FilterOperatorCategory |
getCategory() |
byte |
getId() |
java.lang.String |
getSymbol() |
static com.google.common.collect.ImmutableList<java.lang.String> |
getSymbols()
Get the list of valid
FilterOperator symbols. |
boolean |
requiresArg() |
static FilterOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperator EQUALS
public static final FilterOperator NOT_EQUALS
public static final FilterOperator GREATER_THAN
public static final FilterOperator GREATER_EQUALS_THAN
public static final FilterOperator LESS_THAN
public static final FilterOperator LESS_EQUALS_THAN
public static final FilterOperator BETWEEN
public static final FilterOperator IN
public static final FilterOperator NOT_IN
public static final FilterOperator IS_NULL
public static final FilterOperator NOT_NULL
public static final FilterOperator STARTS_WITH
public static final FilterOperator NOT_STARTS_WITH
public static final FilterOperator ENDS_WITH
public static final FilterOperator NOT_ENDS_WITH
public static final FilterOperator INCLUDES
public static final FilterOperator NOT_INCLUDES
public static final java.lang.String LOCAL_PART
public static final javax.xml.namespace.QName QNAME
public static FilterOperator[] values()
for (FilterOperator c : FilterOperator.values()) System.out.println(c);
public static FilterOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getSymbol()
public byte getId()
public FilterOperatorCategory getCategory()
public boolean requiresArg()
public static FilterOperator get(java.lang.String symbol)
public static FilterOperator getById(byte b)
public static com.google.common.collect.ImmutableList<java.lang.String> getSymbols()
FilterOperator
symbols.ImmutableList
of String
s representing all valid
FilterOperator
s.Copyright © 2003-2024 Appian Corporation. All Rights Reserved.