BinaryExpressionType

Enum for binary expressions.

Entries

Link copied to clipboard

Plus operator, translated to + in SQL.

Link copied to clipboard

Minus operator, translated to - in SQL.

Link copied to clipboard

Multiply operator, translated to * in SQL.

Link copied to clipboard

Divide operator, translated to / in SQL.

Link copied to clipboard

Mod operator, translated to % in SQL.

Link copied to clipboard

Like operator, translated to the like keyword in SQL.

Link copied to clipboard

Not like operator, translated to the not like keyword in SQL.

Link copied to clipboard

And operator, translated to the and keyword in SQL.

Link copied to clipboard

Or operator, translated to the or keyword in SQL.

Link copied to clipboard

Xor operator, translated to the xor keyword in SQL.

Link copied to clipboard

Less operator, translated to < in SQL.

Link copied to clipboard

Less-eq operator, translated to <= in SQL.

Link copied to clipboard

Greater operator, translated to > in SQL.

Link copied to clipboard

Greater-eq operator, translated to >= in SQL.

Link copied to clipboard

Equal operator, translated to = in SQL.

Link copied to clipboard

Not-equal operator, translated to <> in SQL.

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
open override fun toString(): String
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.