Expression builder
The ExpressionBuilder is a utility class to build criteria objects that are used with the CriteriaBuilder
.
Methods
Method | Description | Params | Return value | Example |
---|---|---|---|---|
withField | Sets the field in the expression object | string | ExpressionBuilder |
|
withValue | Sets the value the expression is tested against | unknown (can be string, boolean or number) | ExpressionBuilder |
|
withSerialiser | Sets the serialiser type on the expression | Serialiser | ExpressionBuilder |
|
withGroup | ToDo What does group do | string | ExpressionBuilder |
|
Build | Creates an Expression object based on the values sret | none | Expression |
|