El método adjustInto() de la clase OffsetDateTime en Java ajusta el objeto temporal especificado para que tenga la misma fecha y hora que este objeto.
Sintaxis:
public Temporal adjustInto(Temporal temporal)
Parámetro: este método acepta un solo parámetro temporal que especifica el objeto de destino que se va a ajustar, no nulo.
Valor devuelto: Devuelve el objeto ajustado, no nulo
Errores y excepciones: este método genera dos excepciones, como se describe a continuación:
- DateTimeException : si no se puede realizar el ajuste.
- ArithmeticException : si se produce un desbordamiento numérico.
Los siguientes programas ilustran el método de ajuste():
Programa 1:
// Java program to demonstrate the adjustInto() method import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Current time ZonedDateTime date = ZonedDateTime.now(); // Prints the current date System.out.println("Current date is: " + date); // Parses the date OffsetDateTime date1 = OffsetDateTime.parse("2018-12-12T13:30:30+05:00"); // Function used date = (ZonedDateTime)date1.adjustInto(date); // Prints the date System.out.println(date); } }
Producción:
Current date is: 2018-12-11T09:53:15.294Z[Etc/UTC] 2018-12-12T13:30:30Z[Etc/UTC]
Programa 2 :
// Java program to demonstrate the adjustInto() method // exceptions import java.time.OffsetDateTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { try { // Current time ZonedDateTime date = ZonedDateTime.now(); // Prints the current date System.out.println("Current date is: " + date); // Parses the date OffsetDateTime date1 = OffsetDateTime.parse("2018-13-12T13:30:30+05:00"); // Function used date = (ZonedDateTime)date1.adjustInto(date); // Prints the date System.out.println(date); } catch (Exception e) { System.out.println(e); } } }
Producción:
Current date is: 2018-12-11T09:53:24.660Z[Etc/UTC] java.time.format.DateTimeParseException: Text '2018-13-12T13:30:30+05:00' could not be parsed: Invalid value for MonthOfYear (valid values 1 - 12): 13
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/temporal/TemporalAdjuster.html