Adds the specified number of additional years to a Date
Here are some examples:
date myDate = date.newInstance(1983, 7, 15); date newDate = myDate.addYears(2); system.debug(newDate);
Output: 1985-07-15 00:00:00