notEqualTo

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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

expression

the expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

string

the string expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

int

the int expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

long

the long expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

float

the float expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

double

the double expression to compare with the current expression.


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

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

boolean

the boolean expression to compare with the current expression.


Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

date

the date expression to compare with the current expression.


Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

map

the map expression to compare with the current expression.


infix fun String.notEqualTo(list: List<Any>): Expression

Create a NOT equal to expression that evaluates whether or not the current property is not equal to the given expression.

Return

a NOT equal to expression.

Parameters

list

the list expression to compare with the current expression.