@GwtCompatible public enum FilterOperatorCategory extends java.lang.Enum<FilterOperatorCategory>
Categories used by FilterOperator
.
These categories group filters operators according to their implementation/execution nature.
Enum Constant and Description |
---|
CONTAINMENT |
EQUATION |
INEQUALITY |
NULLNESS |
RANGE |
WILDCARD |
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
LOCAL_PART |
Modifier and Type | Method and Description |
---|---|
static FilterOperatorCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterOperatorCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOperatorCategory EQUATION
public static final FilterOperatorCategory INEQUALITY
public static final FilterOperatorCategory WILDCARD
public static final FilterOperatorCategory CONTAINMENT
public static final FilterOperatorCategory NULLNESS
public static final FilterOperatorCategory RANGE
public static final java.lang.String LOCAL_PART
public static FilterOperatorCategory[] values()
for (FilterOperatorCategory c : FilterOperatorCategory.values()) System.out.println(c);
public static FilterOperatorCategory 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 nullCopyright © 2003-2023 Appian Corporation. All Rights Reserved.