Function to provide notequalsTo(!=) functionality for a field to a Map
Function to provide notequalsTo(!=) functionality for a field to a Map
right hand side value of type Map[String, Any]
field("a.d.d") != Map("aa" -> value)
Function to provide notequalsTo(!=) functionality for a field to a Sequence.
Function to provide notequalsTo(!=) functionality for a field to a Sequence.
right hand side value of type Sequence
field("a.d.d") != Seq("aa",10)
Function to provide notEqualsTo(!=) functionality for a field.
Function to provide notEqualsTo(!=) functionality for a field.
right hand side value of type T
field("a.d.d") != 10
Function to provide lessThan(<) functionality for a field.
Function to provide lessThan(<) functionality for a field.
right hand side value of type T
field("a.d.d") < 10
Function to provide lessThan EqualsTo(<=) functionality for a field.
Function to provide lessThan EqualsTo(<=) functionality for a field.
right hand side value of type T
field("a.d.d") <= 10
Function to provide equalsTo(===) functionality for a field to a Map
Function to provide equalsTo(===) functionality for a field to a Map
right hand side value of type Map[String, Any]
field("a.d.d") === Map("aa" -> value)
Function to provide equalsTo(===) functionality for a field to a Sequence.
Function to provide equalsTo(===) functionality for a field to a Sequence.
right hand side value of type Sequence
field("a.d.d") === Seq("aa",10)
Function to provide equalsTo(===) functionality for a field.
Function to provide equalsTo(===) functionality for a field.
right hand side value of type T
field("a.d.d") === 10
Function to provide greaterThan(>) functionality for a field.
Function to provide greaterThan(>) functionality for a field.
right hand side value of type T
field("a.d.d") > 10
Function to provide greaterThan EqualsTo(>=) functionality for a field.
Function to provide greaterThan EqualsTo(>=) functionality for a field.
right hand side value of type T
field("a.d.d") >= 10
Function to provide between functionality for a field.
Function to provide between functionality for a field.
first right hand side value of type T
second right hand side value of type T
field("a.d.d") between (10,20)
Function to provide EXISTS functionality for a field.
Function to provide EXISTS functionality for a field.
field("a.d.d") exists
name of the field in MapRDB Table.
Function to provide IN functionality for a field.
Function to provide IN functionality for a field.
right hand side value of type Seq[Any]
field("a.d.d") in (10, 20)
Function to provide LIKE functionality for a field.
Function to provide LIKE functionality for a field.
right hand side is a SQL like regex string
field("a.d.d") like "%s"
Function to provide MATCHES functionality for a field.
Function to provide MATCHES functionality for a field.
right hand side is a regular expression
field("a.d.d") matches "*s"
Function to provide NOTEXISTS functionality for a field.
Function to provide NOTEXISTS functionality for a field.
field("a.d.d") notexists
Function to provide NOTIN functionality for a field.
Function to provide NOTIN functionality for a field.
right hand side value of type Seq[Any]
field("a.d.d") notin Seq(10,20)
Function to provide NOTLIKE functionality for a field.
Function to provide NOTLIKE functionality for a field.
right hand side is a SQL like regex string
field("a.d.d") notlike "%s"
Function to provide NOTMATCHES functionality for a field.
Function to provide NOTMATCHES functionality for a field.
right hand side is a regular expression
field("a.d.d") notmatches "*s"
Function to provide NOTTYPEOF functionality for a field.
Function to provide NOTTYPEOF functionality for a field.
type of the field
field("a.d.d") NOTTYPEOF "INT"
Function to provide TYPEOF functionality for a field.
Function to provide TYPEOF functionality for a field.
type of the field.
field("a.d.d") typeof "INT"
field class provides the functionality to represent the query conditions.
name of the field in MapRDB Table.
An equality condition can be represented by field("a.c.d") === 10 Similarly a greater than condition can be represented by field("a.c.d") >= 10