Returns a month-based duration for the supplied number of months. @param self the number of months @return the corresponding duration
(final Integer self)
| 160 | * @return the corresponding duration |
| 161 | */ |
| 162 | public static DatumDependentDuration getMonths(final Integer self) { |
| 163 | return new DatumDependentDuration(0, self, 0, 0, 0, 0, 0); |
| 164 | } |
| 165 | |
| 166 | /** |
| 167 | * Alias for {@link #getMonths(Integer)}. |