El método withYear() de la clase LocalDate en Java devuelve una copia de esta LocalDate con el año alterado.
Sintaxis:
public LocalDate withYear(int year)
Parámetro: este método acepta un año de parámetro obligatorio que especifica el año para establecer en el resultado que puede estar en el rango de MIN_YEAR a MAX_YEAR.
Devoluciones: la función devuelve un LocalDate basado en esta fecha con el año solicitado, no nulo.
Excepciones : la función lanza una excepción DateTimeException cuando el valor del año no es válido.
Los siguientes programas ilustran el método LocalDate.withYear() :
Programa 1:
// Program to illustrate the withYear() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt1 = LocalDate.parse("2018-12-07"); LocalDate result = dt1.withYear(2018); // Prints the date with year System.out.println("The date with year is: " + result); } }
Producción:
The date with year is: 2018-12-07
Programa 2:
// Program to illustrate the withYear() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date LocalDate dt1 = LocalDate.parse("2018-01-07"); LocalDate result = dt1.withYear(2014); // Prints the date with year System.out.println("The date with year is: " + result); } }
Producción:
The date with year is: 2014-01-07
Referencia: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#withYear(int)