C# Class Hazelcast.Core.Predicates

Helper mothod for creating builtin predicates
ファイルを表示 Open project: hazelcast/hazelcast-csharp-client

Public Methods

Method Description
And ( ) : AndPredicate
False ( ) : FalsePredicate
IsBetween ( string attributeName, object from, object to ) : BetweenPredicate
IsEqual ( string attributeName, object value ) : EqualPredicate
IsGreaterThan ( string attributeName, object value ) : GreaterLessPredicate
IsGreaterThanOrEqual ( string attributeName, object value ) : GreaterLessPredicate
IsILike ( string attributeName, string expression ) : ILikePredicate
IsIn ( string attributeName ) : InPredicate
IsLessThan ( string attributeName, object value ) : GreaterLessPredicate
IsLessThanOrEqual ( string attributeName, object value ) : GreaterLessPredicate
IsLike ( string attributeName, string expression ) : LikePredicate
IsNotEqual ( string attributeName, object value ) : NotEqualPredicate
MatchesRegex ( string attributeName, string regex ) : RegexPredicate
Not ( IPredicate predicate ) : NotPredicate
Or ( ) : OrPredicate
Sql ( string sql ) : SqlPredicate
True ( ) : TruePredicate

Method Details

And() public static method

public static And ( ) : AndPredicate
return AndPredicate

False() public static method

public static False ( ) : FalsePredicate
return FalsePredicate

IsBetween() public static method

public static IsBetween ( string attributeName, object from, object to ) : BetweenPredicate
attributeName string
from object
to object
return BetweenPredicate

IsEqual() public static method

public static IsEqual ( string attributeName, object value ) : EqualPredicate
attributeName string
value object
return EqualPredicate

IsGreaterThan() public static method

public static IsGreaterThan ( string attributeName, object value ) : GreaterLessPredicate
attributeName string
value object
return GreaterLessPredicate

IsGreaterThanOrEqual() public static method

public static IsGreaterThanOrEqual ( string attributeName, object value ) : GreaterLessPredicate
attributeName string
value object
return GreaterLessPredicate

IsILike() public static method

public static IsILike ( string attributeName, string expression ) : ILikePredicate
attributeName string
expression string
return ILikePredicate

IsIn() public static method

public static IsIn ( string attributeName ) : InPredicate
attributeName string
return InPredicate

IsLessThan() public static method

public static IsLessThan ( string attributeName, object value ) : GreaterLessPredicate
attributeName string
value object
return GreaterLessPredicate

IsLessThanOrEqual() public static method

public static IsLessThanOrEqual ( string attributeName, object value ) : GreaterLessPredicate
attributeName string
value object
return GreaterLessPredicate

IsLike() public static method

public static IsLike ( string attributeName, string expression ) : LikePredicate
attributeName string
expression string
return LikePredicate

IsNotEqual() public static method

public static IsNotEqual ( string attributeName, object value ) : NotEqualPredicate
attributeName string
value object
return NotEqualPredicate

MatchesRegex() public static method

public static MatchesRegex ( string attributeName, string regex ) : RegexPredicate
attributeName string
regex string
return RegexPredicate

Not() public static method

public static Not ( IPredicate predicate ) : NotPredicate
predicate IPredicate
return NotPredicate

Or() public static method

public static Or ( ) : OrPredicate
return OrPredicate

Sql() public static method

public static Sql ( string sql ) : SqlPredicate
sql string
return SqlPredicate

True() public static method

public static True ( ) : TruePredicate
return TruePredicate