@Beta public interface FilterableNumeric extends Expressions.Operand
Modifier and Type | Method and Description |
---|---|
default ValueNumeric |
add(Number operand)
Filter by expression "add".
|
default ValueNumeric |
add(ValueNumeric operand)
Filter by expression "add".
|
default ValueNumeric.Expression |
ceil()
Filter by expression "ceiling".
|
default ValueNumeric |
divide(Number operand)
Filter by expression "divby".
|
default ValueNumeric |
divide(ValueNumeric operand)
Filter by expression "divby".
|
default ValueNumeric.Expression |
floor()
Filter by expression "floor".
|
default ValueNumeric |
modulo(Number operand)
Filter by expression "mod".
|
default ValueNumeric |
modulo(ValueNumeric operand)
Filter by expression "mod".
|
default ValueNumeric |
multiply(Number operand)
Filter by expression "mul".
|
default ValueNumeric |
multiply(ValueNumeric operand)
Filter by expression "mul".
|
default ValueNumeric.Expression |
negate()
Filter by expression "-".
|
default ValueNumeric.Expression |
round()
Filter by expression "round".
|
default ValueNumeric |
subtract(Number operand)
Filter by expression "sub".
|
default ValueNumeric |
subtract(ValueNumeric operand)
Filter by expression "sub".
|
getExpression, getExpression
@Nonnull default ValueNumeric add(@Nonnull ValueNumeric operand)
operand
- The number to add.@Nonnull default ValueNumeric add(@Nonnull Number operand)
operand
- The number to add.@Nonnull default ValueNumeric subtract(@Nonnull ValueNumeric operand)
operand
- The number to subtract.@Nonnull default ValueNumeric subtract(@Nonnull Number operand)
operand
- The number to subtract.@Nonnull default ValueNumeric multiply(@Nonnull ValueNumeric operand)
operand
- The number to multiply.@Nonnull default ValueNumeric multiply(@Nonnull Number operand)
operand
- The number to multiply.@Nonnull default ValueNumeric divide(@Nonnull ValueNumeric operand)
operand
- The number to divide.@Nonnull default ValueNumeric divide(@Nonnull Number operand)
operand
- The number to divide.@Nonnull default ValueNumeric modulo(@Nonnull ValueNumeric operand)
operand
- The base number to calculate the modulo from.@Nonnull default ValueNumeric modulo(@Nonnull Number operand)
operand
- The base number to calculate the modulo from.@Nonnull default ValueNumeric.Expression ceil()
@Nonnull default ValueNumeric.Expression floor()
@Nonnull default ValueNumeric.Expression round()
@Nonnull default ValueNumeric.Expression negate()
Copyright © 2020 SAP SE. All rights reserved.