public static enum Filter.LogicalOperation extends java.lang.Enum<Filter.LogicalOperation>
Enum Constant and Description |
---|
COLLECTION_CONDITION
Apply a filter to elements of a collection.
|
CONTAINS_ALL
Checks that a multi-valued property's list of values is a subset of
(or contains all elements from) another list of values.
|
EQ
Checks that a property is equal to a value.
|
GE
Checks that a property is greater than or equal to a value.
|
GT
Checks that a property is greater than a value.
|
IN
Checks that a single-valued property's value is one of a given list
of values.
|
ISEMPTY
Checks that a property is not null.
|
ISNULL
Checks that a property is not null.
|
JOIN
Joins a property from one class to a property on another.
|
LE
Checks that a property is less than or equal to a value.
|
LIKE
Checks that a property is like a given string using a MatchMode.
|
LT
Checks that a property is less than a value.
|
NE
Checks that a property is not equal to a value.
|
NOTNULL
Checks that a property is not null.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDisplayName() |
Filter.LogicalOperation |
getInverseOperation() |
java.lang.String |
getStringRepresentation() |
static Filter.LogicalOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Filter.LogicalOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Filter.LogicalOperation EQ
public static final Filter.LogicalOperation NE
public static final Filter.LogicalOperation LT
public static final Filter.LogicalOperation GT
public static final Filter.LogicalOperation LE
public static final Filter.LogicalOperation GE
public static final Filter.LogicalOperation IN
public static final Filter.LogicalOperation CONTAINS_ALL
public static final Filter.LogicalOperation LIKE
public static final Filter.LogicalOperation NOTNULL
public static final Filter.LogicalOperation ISNULL
public static final Filter.LogicalOperation ISEMPTY
public static final Filter.LogicalOperation JOIN
public static final Filter.LogicalOperation COLLECTION_CONDITION
public static Filter.LogicalOperation[] values()
for (Filter.LogicalOperation c : Filter.LogicalOperation.values()) System.out.println(c);
public static Filter.LogicalOperation 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 getStringRepresentation()
public java.lang.String getDisplayName()
public Filter.LogicalOperation getInverseOperation()