EntityT
- Type of the entity which references the value.public interface FilterableNumericInteger<EntityT> extends FilterableNumeric<EntityT>
Modifier and Type | Interface and Description |
---|---|
static class |
FilterableNumericInteger.Expression<EntityT>
Wrapper expression class, which delegates to another operation.
|
Modifier and Type | Method and Description |
---|---|
default FilterableNumericInteger<EntityT> |
add(FilterableNumericInteger<EntityT> operand)
Filter by expression "add".
|
default FilterableNumericInteger<EntityT> |
add(Integer operand)
Filter by expression "add".
|
default FilterableNumericInteger<EntityT> |
add(Long operand)
Filter by expression "add".
|
default FilterableNumericDecimal<EntityT> |
add(Number operand)
Filter by expression "add".
|
default FilterableNumericInteger<EntityT> |
modulo(FilterableNumericInteger<EntityT> operand)
Filter by expression "mod".
|
default FilterableNumericInteger<EntityT> |
modulo(Integer operand)
Filter by expression "mod".
|
default FilterableNumericInteger<EntityT> |
modulo(Long operand)
Filter by expression "mod".
|
default FilterableNumericDecimal<EntityT> |
modulo(Number operand)
Filter by expression "mod".
|
default FilterableNumericInteger<EntityT> |
multiply(FilterableNumericInteger<EntityT> operand)
Filter by expression "mul".
|
default FilterableNumericInteger<EntityT> |
multiply(Integer operand)
Filter by expression "mul".
|
default FilterableNumericInteger<EntityT> |
multiply(Long operand)
Filter by expression "mul".
|
default FilterableNumericDecimal<EntityT> |
multiply(Number operand)
Filter by expression "mul".
|
default FilterableNumericInteger<EntityT> |
negate()
Filter by expression "-".
|
default FilterableNumericInteger<EntityT> |
subtract(FilterableNumericInteger<EntityT> operand)
Filter by expression "sub".
|
default FilterableNumericInteger<EntityT> |
subtract(Integer operand)
Filter by expression "sub".
|
default FilterableNumericInteger<EntityT> |
subtract(Long operand)
Filter by expression "sub".
|
default FilterableNumericDecimal<EntityT> |
subtract(Number operand)
Filter by expression "sub".
|
add, divide, divide, divide, modulo, multiply, subtract
equalTo, equalTo, greaterThan, greaterThan, greaterThanEqual, greaterThanEqual, lessThan, lessThan, lessThanEqual, lessThanEqual, notEqualTo, notEqualTo
getExpression, getExpression
getEntityType
@Nonnull default FilterableNumericInteger<EntityT> add(@Nonnull FilterableNumericInteger<EntityT> operand)
FilterableNumeric
add
in interface FilterableNumeric<EntityT>
operand
- The number to add.@Nonnull default FilterableNumericDecimal<EntityT> add(@Nonnull Number operand)
FilterableNumeric
add
in interface FilterableNumeric<EntityT>
operand
- The number to add.@Nonnull default FilterableNumericInteger<EntityT> add(@Nonnull Long operand)
FilterableNumeric
add
in interface FilterableNumeric<EntityT>
operand
- The number to add.@Nonnull default FilterableNumericInteger<EntityT> add(@Nonnull Integer operand)
FilterableNumeric
add
in interface FilterableNumeric<EntityT>
operand
- The number to add.@Nonnull default FilterableNumericInteger<EntityT> multiply(@Nonnull FilterableNumericInteger<EntityT> operand)
FilterableNumeric
multiply
in interface FilterableNumeric<EntityT>
operand
- The number to multiply.@Nonnull default FilterableNumericDecimal<EntityT> multiply(@Nonnull Number operand)
FilterableNumeric
multiply
in interface FilterableNumeric<EntityT>
operand
- The number to multiply.@Nonnull default FilterableNumericInteger<EntityT> multiply(@Nonnull Long operand)
FilterableNumeric
multiply
in interface FilterableNumeric<EntityT>
operand
- The number to multiply.@Nonnull default FilterableNumericInteger<EntityT> multiply(@Nonnull Integer operand)
FilterableNumeric
multiply
in interface FilterableNumeric<EntityT>
operand
- The number to multiply.@Nonnull default FilterableNumericInteger<EntityT> subtract(@Nonnull FilterableNumericInteger<EntityT> operand)
FilterableNumeric
subtract
in interface FilterableNumeric<EntityT>
operand
- The number to subtract.@Nonnull default FilterableNumericDecimal<EntityT> subtract(@Nonnull Number operand)
FilterableNumeric
subtract
in interface FilterableNumeric<EntityT>
operand
- The number to subtract.@Nonnull default FilterableNumericInteger<EntityT> subtract(@Nonnull Long operand)
FilterableNumeric
subtract
in interface FilterableNumeric<EntityT>
operand
- The number to subtract.@Nonnull default FilterableNumericInteger<EntityT> subtract(@Nonnull Integer operand)
FilterableNumeric
subtract
in interface FilterableNumeric<EntityT>
operand
- The number to subtract.@Nonnull default FilterableNumericInteger<EntityT> modulo(@Nonnull FilterableNumericInteger<EntityT> operand)
FilterableNumeric
modulo
in interface FilterableNumeric<EntityT>
operand
- The base number to calculate the modulo from.@Nonnull default FilterableNumericDecimal<EntityT> modulo(@Nonnull Number operand)
FilterableNumeric
modulo
in interface FilterableNumeric<EntityT>
operand
- The base number to calculate the modulo from.@Nonnull default FilterableNumericInteger<EntityT> modulo(@Nonnull Long operand)
FilterableNumeric
modulo
in interface FilterableNumeric<EntityT>
operand
- The base number to calculate the modulo from.@Nonnull default FilterableNumericInteger<EntityT> modulo(@Nonnull Integer operand)
FilterableNumeric
modulo
in interface FilterableNumeric<EntityT>
operand
- The base number to calculate the modulo from.@Nonnull default FilterableNumericInteger<EntityT> negate()
FilterableNumeric
negate
in interface FilterableNumeric<EntityT>
Copyright © 2020 SAP SE. All rights reserved.