lessThan

infix fun String.lessThan(expression: Expression): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

expression

the expression to compare with the current expression.


infix fun String.lessThan(string: String): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

string

the string expression to compare with the current expression.


infix fun String.lessThan(int: Int): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

int

the int expression to compare with the current expression.


infix fun String.lessThan(long: Long): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

long

the long expression to compare with the current expression.


infix fun String.lessThan(float: Float): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

float

the float expression to compare with the current expression.


infix fun String.lessThan(double: Double): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

double

the double expression to compare with the current expression.


infix fun String.lessThan(boolean: Boolean): Expression(source)

Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

boolean

the boolean expression to compare with the current expression.


Create a less than expression that evaluates whether or not the current property is less than the given expression.

Return

a less than expression.

Parameters

date

the date expression to compare with the current expression.