()
| 1117 | * @return String like "-5s [POSIX]" or "4.123456789s [UTC]" |
| 1118 | */ |
| 1119 | @Override |
| 1120 | public String toString() { |
| 1121 | |
| 1122 | StringBuilder sb = new StringBuilder(); |
| 1123 | this.createNumber(sb); |
| 1124 | sb.append("s ["); |
| 1125 | sb.append(this.scale.name()); |
| 1126 | sb.append(']'); |
| 1127 | return sb.toString(); |
| 1128 | |
| 1129 | } |
| 1130 | |
| 1131 | /** |
| 1132 | * <p>Converts this machine time duration into a decimal number of seconds. </p> |
nothing calls this directly
no test coverage detected