(
long amount,
SI unit
)
| 1477 | * @throws ArithmeticException in case of overflow |
| 1478 | */ |
| 1479 | public Moment minus( |
| 1480 | long amount, |
| 1481 | SI unit |
| 1482 | ) { |
| 1483 | |
| 1484 | return this.plus(Math.negateExact(amount), unit); |
| 1485 | |
| 1486 | } |
| 1487 | |
| 1488 | /** |
| 1489 | * <p>Subtracts given real time from this timestamp on the UTC time scale. </p> |