greaterThan

infix fun String.greaterThan(expression: Expression): Expression

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

Return

a greater than expression.

Parameters

expression

the expression to compare with the current expression.


infix fun String.greaterThan(string: String): Expression

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

Return

a greater than expression.

Parameters

string

the string expression to compare with the current expression.


infix fun String.greaterThan(int: Int): Expression

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

Return

a greater than expression.

Parameters

int

the int expression to compare with the current expression.


infix fun String.greaterThan(long: Long): Expression

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

Return

a greater than expression.

Parameters

long

the long expression to compare with the current expression.


infix fun String.greaterThan(float: Float): Expression

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

Return

a greater than expression.

Parameters

float

the float expression to compare with the current expression.


infix fun String.greaterThan(double: Double): Expression

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

Return

a greater than expression.

Parameters

double

the double expression to compare with the current expression.


infix fun String.greaterThan(boolean: Boolean): Expression

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

Return

a greater than expression.

Parameters

boolean

the boolean expression to compare with the current expression.


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

Return

a greater than expression.

Parameters

date

the date expression to compare with the current expression.