Interface FilterableBoolean
- All Superinterfaces:
Expressions.Operand
- All Known Subinterfaces:
ValueBoolean
- All Known Implementing Classes:
ValueBoolean.Expression
Boolean operations for generic OData filter expression operands.
-
Field Summary
Fields inherited from interface com.sap.cloud.sdk.datamodel.odata.client.expression.Expressions.Operand
NULL -
Method Summary
Modifier and TypeMethodDescriptiondefault ValueBooleanand(ValueBoolean operand) Combine current filter expression with another expression in conjunction.default ValueBooleanCombine the filter expression with another expression in conjunctiondefault ValueBooleannot()Negate the current filter expression.default ValueBooleanor(ValueBoolean operand) Combine current filter expression with another expression in disjunction.default ValueBooleanCombine the filter expression with another expression in disjunctionMethods inherited from interface com.sap.cloud.sdk.datamodel.odata.client.expression.Expressions.Operand
getExpression, getExpression
-
Method Details
-
and
Combine current filter expression with another expression in conjunction.- Parameters:
operand- The other expression.- Returns:
- This FluentHelper reference.
-
and
Combine the filter expression with another expression in conjunction- Parameters:
operand- A boolean value.- Returns:
- This FluentHelper reference.
-
or
Combine current filter expression with another expression in disjunction.- Parameters:
operand- The other expression.- Returns:
- This FluentHelper reference.
-
or
Combine the filter expression with another expression in disjunction- Parameters:
operand- A boolean value.- Returns:
- This FluentHelper reference.
-
not
Negate the current filter expression.- Returns:
- This FluentHelper reference.
-