Returns a day-based duration for the supplied number of days. @param self the number of days @return the corresponding duration
(final Integer self)
| 224 | * @return the corresponding duration |
| 225 | */ |
| 226 | public static Duration getDays(final Integer self) { |
| 227 | return new Duration(self, 0, 0, 0, 0); |
| 228 | } |
| 229 | |
| 230 | /** |
| 231 | * Alias for {@link #getDays(Integer)}. |