Module io.ebean.core
Interface DbExpressionHandler
public interface DbExpressionHandler
Adds the db platform specific json expression.
-
Method Summary
Modifier and TypeMethodDescriptionvoidarrayContains(DbExpressionRequest request, String propName, boolean contains, Object... values) Add SQL for ARRAY CONTAINS expression.voidarrayIsEmpty(DbExpressionRequest request, String propName, boolean empty) Add SQL for ARRAY IS EMPTY expression.voidbitwise(DbExpressionRequest request, String propName, BitwiseOp operator, long flags, String compare, long match) Add the bitwise expression.Performs a "CONCAT" operation for that platform.voidWrite the db platform specific json expression.
-
Method Details
-
json
Write the db platform specific json expression. -
arrayContains
void arrayContains(DbExpressionRequest request, String propName, boolean contains, Object... values) Add SQL for ARRAY CONTAINS expression. -
arrayIsEmpty
Add SQL for ARRAY IS EMPTY expression. -
bitwise
void bitwise(DbExpressionRequest request, String propName, BitwiseOp operator, long flags, String compare, long match) Add the bitwise expression. -
concat
Performs a "CONCAT" operation for that platform.
-