withMonth abstract method

Date withMonth(
  1. int month
)

Make a new date object with changed month

Original date object remains unchanged

This method is NOT safe

Throws DateException on problems

Note: For changing at once use copy() methods

Note: You can chain methods

Implementation

Date withMonth(int month);