like

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

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

Return

a Like expression.

Parameters

expression

the expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

string

the string expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

int

the int expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

long

the long expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

float

the float expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

double

the double expression to compare with the current expression.


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

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

Return

a Like expression.

Parameters

boolean

the boolean expression to compare with the current expression.


infix fun String.like(date: Instant): Expression

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

Return

a Like expression.

Parameters

date

the date expression to compare with the current expression.