| AbstractFilter |
|
| AbstractJunctionFilter |
Abstract class for composite filters
|
| And |
A composite filter that evaluates to true if all of the subfilters match
|
| Between |
A filter that matches if the property to check for falls within the defined
range.
|
| Compare |
A filter that compares a property value against a provided value
|
| Compare.Equal |
A filter that evaluates to true if the property value is equal to the provided value
|
| Compare.Greater |
A filter that evaluates to true if the property value is greater than the provided value
|
| Compare.GreaterOrEqual |
A filter that evaluates to true if the property value is greater than or equal to the
provided value
|
| Compare.Less |
A filter that evaluates to true if the property value is less than the provided value
|
| Compare.LessOrEqual |
A filter that evaluates to true if the property value is less than or equal to the provided
value
|
| Contains |
A filter that checks if a value is contained in a collection
|
| DynamoFilterUtil |
|
| FlexibleFilterDefinition |
Flexible filter definition
|
| In |
A filter for testing that the value of a certain property is included in a
collection of values
|
| IsNull |
A filter for checking if a property is null
|
| Like |
A filter for checking if a string value contains a certain pattern.
|
| Modulo |
A filter for determining if an expression matches a certain modulo calculation
|
| Not |
A filter that negates the value of another filter
|
| Or |
A composite filter that evaluates to true if at least one of its subfilters does
|