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