()
| 749 | * @since 2.0 |
| 750 | */ |
| 751 | public MachineTime<U> abs() { |
| 752 | |
| 753 | if (this.isNegative()) { |
| 754 | return new MachineTime<>(Math.negateExact(this.seconds), -this.nanos, this.scale); |
| 755 | } else { |
| 756 | return this; |
| 757 | } |
| 758 | |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * <p>Creates a copy with inversed sign. </p> |
no test coverage detected