()
| 4249 | * @return new {@code Duration} |
| 4250 | */ |
| 4251 | public Duration<IsoUnit> build() { |
| 4252 | |
| 4253 | if (this.items.isEmpty()) { |
| 4254 | throw new IllegalStateException("Not set any amount and unit."); |
| 4255 | } |
| 4256 | |
| 4257 | return new Duration<>( |
| 4258 | this.items, |
| 4259 | this.negative |
| 4260 | ); |
| 4261 | |
| 4262 | } |
| 4263 | |
| 4264 | private void set( |
| 4265 | long amount, |