| Class | Description |
|---|---|
| BooleanLiteral |
A
QueryExpression that represents a boolean constant. |
| Equality<ComparableType> |
A
QueryExpression that checks the equality of its arguments. |
| ExpressionMatches |
A
QueryExpression that checks whether a given expression matches a saperion style
filter. |
| GreaterEqual<ComparableType extends Comparable<ComparableType>> |
A
QueryExpression that checks whether the first argument is greater than or equal
to the second one. |
| GreaterThan<ComparableType extends Comparable<ComparableType>> |
A
QueryExpression that checks the first argument is greater than the second. |
| In<ElementType,CollectionType extends Collection<ElementType>> |
A
QueryExpression that checks whether its first argument is contained in the second one. |
| Inequality<Type1,Type2> |
A
QueryExpression that checks the inequality of its arguments. |
| IsEmpty<ElementType,CollectionType extends Collection<ElementType>> |
A
QueryExpression that checks whether its operand is an empty list. |
| IsNotEmpty<ElementType,CollectionType extends Collection<ElementType>> |
A
QueryExpression that checks whether its operand is a non-empty list. |
| IsNotNull<Type> |
A
QueryExpression that checks whether its operand is not null. |
| IsNull<Type> |
A
QueryExpression that checks whether its operand is null. |
| LessEqual<ComparableType extends Comparable<ComparableType>> |
A
QueryExpression that checks whether the first argument is less than or equal
to the second one. |
| LessThan<ComparableType extends Comparable<ComparableType>> |
A
QueryExpression that checks the first argument is less than the second. |
| MemberOf<ElementType,CollectionType extends Collection<ElementType>> |
A
QueryExpression that checks whether its first operand is a member
of the second one. |
| NotContained<ElementType,CollectionType extends Collection<ElementType>> |
A
QueryExpression that checks whether its first argument is not contained in the second one. |
| NotMemberOf<ElementType,CollectionType extends Collection<ElementType>> |
A
com.saperion.database.query.QueryPredicate that checks whether its first operand is not a member
of the second one. |
Copyright © 2020 Hyland Software Germany GmbH. All rights reserved.