like

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

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

string

the string expression to compare with the current expression.


infix fun Expression.like(int: Int): Expression(source)

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

int

the int expression to compare with the current expression.


infix fun Expression.like(long: Long): Expression(source)

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

long

the long expression to compare with the current expression.


infix fun Expression.like(float: Float): Expression(source)

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

float

the float expression to compare with the current expression.


infix fun Expression.like(double: Double): Expression(source)

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

double

the double expression to compare with the current expression.


infix fun Expression.like(boolean: Boolean): Expression(source)

Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

boolean

the boolean expression to compare with the current expression.


Create a Like expression that evaluates whether or not the current expression is LIKE the given expression.

Return

a Like expression.

Parameters

date

the date expression to compare with the current expression.