(CalendarDays days)
| 271 | * @since 5.0 |
| 272 | */ |
| 273 | public GeneralTimestamp<C> plus(CalendarDays days) { |
| 274 | |
| 275 | CalendarVariant<?> ncv = (this.cv == null) ? null : this.cv.plus(days); |
| 276 | Calendrical<?, ?> nca = (this.ca == null) ? null : this.ca.plus(days); |
| 277 | return new GeneralTimestamp<>(ncv, nca, this.time); |
| 278 | |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * <p>Adds given count of clock units to this general timestamp and return the result. </p> |
no test coverage detected