Java examples for java.time:LocalDateTime
add Years to LocalDateTime
//package com.java2s; import java.time.LocalDateTime; public class Main { public static LocalDateTime addYears(LocalDateTime inputDateTime, int yearsToAdd) { return inputDateTime.plusYears(yearsToAdd); }/*from w w w . j av a 2 s .c om*/ }