()
| 444 | * @see #getFraction() |
| 445 | */ |
| 446 | public long getSeconds() { |
| 447 | |
| 448 | long secs = this.seconds; |
| 449 | |
| 450 | if (this.nanos < 0) { |
| 451 | secs--; |
| 452 | } |
| 453 | |
| 454 | return secs; |
| 455 | |
| 456 | } |
| 457 | |
| 458 | /** |
| 459 | * <p>Yields the normalized nanosecond fraction of this duration. </p> |