Package com.exasol.sql.expression
Class Like.Builder
- java.lang.Object
-
- com.exasol.sql.expression.Like.Builder
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Likebuild()Create a new instance ofLike.Like.Builderescape(char escape)Add an escape character.Like.Builderleft(ValueExpression left)Add the left operand.Like.Buildernot()Set for NOT LIKE expression.Like.Builderright(ValueExpression right)Add the right operand.
-
-
-
Method Detail
-
left
public Like.Builder left(ValueExpression left)
Add the left operand.- Parameters:
left- left operand- Returns:
thisfor fluent programming
-
right
public Like.Builder right(ValueExpression right)
Add the right operand.- Parameters:
right- right operand- Returns:
thisfor fluent programming
-
not
public Like.Builder not()
Set for NOT LIKE expression.- Returns:
thisfor fluent programming
-
escape
public Like.Builder escape(char escape)
Add an escape character.- Parameters:
escape- escape character- Returns:
thisfor fluent programming
-
-