(MachineTime<U> other)
| 1012 | * @since 3.20/4.16 |
| 1013 | */ |
| 1014 | public boolean isShorterThan(MachineTime<U> other) { |
| 1015 | |
| 1016 | return (this.abs().compareTo(other.abs()) < 0); |
| 1017 | |
| 1018 | } |
| 1019 | |
| 1020 | /** |
| 1021 | * <p>Compares the absolute lengths and is equivalent to {@code abs().compareTo(other.abs()) > 0}. </p> |