Interface FilterExpressionLogical
public interface FilterExpressionLogical
Set of OData filter functions for logical types.
-
Method Summary
Static MethodsModifier and TypeMethodDescriptionstatic ValueBoolean.Expressionand(ValueBoolean operand1, ValueBoolean operand2) static ValueBoolean.ExpressionequalTo(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.ExpressiongreaterThan(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.ExpressiongreaterThanEquals(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.Expressionhas(Expressions.OperandSingle operand1, ValueEnum operand2) static ValueBoolean.Expressionin(Expressions.Operand operand1, Expressions.Operand... operands2) static ValueBoolean.Expressionin(Expressions.Operand operand1, Expressions.OperandMultiple operand2) static ValueBoolean.ExpressionlessThan(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.ExpressionlessThanEquals(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.Expressionnot(ValueBoolean operand) static ValueBoolean.ExpressionnotEqualTo(Expressions.Operand operand1, Expressions.Operand operand2) static ValueBoolean.Expressionor(ValueBoolean operand1, ValueBoolean operand2)
-
Method Details
-
equalTo
@Nonnull static ValueBoolean.Expression equalTo(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
notEqualTo
@Nonnull static ValueBoolean.Expression notEqualTo(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
greaterThan
@Nonnull static ValueBoolean.Expression greaterThan(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
greaterThanEquals
@Nonnull static ValueBoolean.Expression greaterThanEquals(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
lessThan
@Nonnull static ValueBoolean.Expression lessThan(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
lessThanEquals
@Nonnull static ValueBoolean.Expression lessThanEquals(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand operand2) -
and
@Nonnull static ValueBoolean.Expression and(@Nonnull ValueBoolean operand1, @Nonnull ValueBoolean operand2) -
or
@Nonnull static ValueBoolean.Expression or(@Nonnull ValueBoolean operand1, @Nonnull ValueBoolean operand2) -
not
-
has
@Nonnull static ValueBoolean.Expression has(@Nonnull Expressions.OperandSingle operand1, @Nonnull ValueEnum operand2) -
in
@Nonnull static ValueBoolean.Expression in(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.Operand... operands2) -
in
@Nonnull static ValueBoolean.Expression in(@Nonnull Expressions.Operand operand1, @Nonnull Expressions.OperandMultiple operand2)
-