@Beta public interface FilterableComparisonAbsolute extends Expressions.Operand
NULL| Modifier and Type | Method and Description |
|---|---|
default ValueBoolean |
equalTo(Expressions.Operand operand)
Filter by expression "eq".
|
default ValueBoolean |
equalTo(Object operand)
Filter by expression "eq".
|
default ValueBoolean |
in(Expressions.Operand... operands)
Filter by expression "in".
|
default ValueBoolean |
in(FilterableCollection collection)
Filter by expression "in".
|
default <T> ValueBoolean |
in(List<T> operands)
Filter by expression "in".
|
default ValueBoolean |
in(Object... operands)
Filter by expression "in".
|
default ValueBoolean |
notEqualTo(Expressions.Operand operand)
Filter by expression "ne".
|
default ValueBoolean |
notEqualTo(Object operand)
Filter by expression "ne".
|
getExpression, getExpression@Nonnull default ValueBoolean equalTo(@Nonnull Expressions.Operand operand)
operand - The generic operand to compare with.@Nonnull default ValueBoolean equalTo(@Nonnull Object operand)
operand - The generic object to compare with.IllegalArgumentException - When there is no mapping found for the provided Java literal.@Nonnull default ValueBoolean in(@Nonnull Expressions.Operand... operands)
operands - The generic operands to compare with.@Nonnull default ValueBoolean in(@Nonnull Object... operands)
operands - The generic objects to compare with.IllegalArgumentException - When there is no mapping found for the provided Java literal.@Nonnull default ValueBoolean in(@Nonnull FilterableCollection collection)
collection - A filterable collection reference.@Nonnull default <T> ValueBoolean in(@Nonnull List<T> operands)
T - Generic argument type for provided list items.operands - The generic objects to compare with.IllegalArgumentException - When there is no mapping found for the provided Java literal.@Nonnull default ValueBoolean notEqualTo(@Nonnull Expressions.Operand operand)
operand - The generic operand to compare with.@Nonnull default ValueBoolean notEqualTo(@Nonnull Object operand)
operand - The generic object to compare with.IllegalArgumentException - When there is no mapping found for the provided Java literal.Copyright © 2021 SAP SE. All rights reserved.