PredicateBuilder Class
Namespace: Hazelcast.Query
Assembly: Hazelcast.Net.dll
Builds a predicate.
public class PredicateBuilder
Methods
IsBetween(Object, Object) | Succeeds if the target value is between the specified inclusive bounds. |
IsEqualTo(Object) | Succeeds if the target value is equal to the specified value. |
IsGreaterThan(Object) | Succeeds if the target value is greater than the specified value. |
IsGreaterThanOrEqualTo(Object) | Succeeds if the target value is greater than, or equal to, the specified value. |
IsILike(String) | Succeeds if the target value matches the specified case-insensitive pattern. |
IsIn(Object[]) | Succeeds if the target value is equal to one of the specified values. |
IsLessThan(Object) | Succeeds if the target value is less than the specified value. |
IsLessThanOrEqualTo(Object) | Succeeds if the target value is less than, or equal to, the specified value. |
IsLike(String) | Succeeds if the target value matches the specified case-sensitive pattern. |
IsNotEqualTo(Object) | Succeeds if the target value is not equal to the specified value. |
Matches(String) | Succeeds if the target value matches the specified regular expression. |