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