Alias for #getSeconds(Integer). @param self the number of seconds @return the corresponding duration
(final Integer self)
| 294 | * @return the corresponding duration |
| 295 | */ |
| 296 | public static TimeDuration getSecond(final Integer self) { |
| 297 | return getSeconds(self); |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Returns a millisecond-based duration for the supplied number of milliseconds. |
nothing calls this directly
no test coverage detected