El método adjustInto() de la clase OffsetDateTime en Java ajusta el objeto temporal especificado para que tenga la misma 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.OffsetTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { // Current time ZonedDateTime date = ZonedDateTime.now(); // Prints the current time System.out.println("Current date:" + date); // Parsed the date OffsetTime date1 = OffsetTime.parse("14:30:30+05:00"); // Adjusts date = (ZonedDateTime)date1.adjustInto(date); System.out.println("Adjusted date:" + date); } }
Producción:
Current date:2018-12-11T10:01:37.877Z[Etc/UTC] Adjusted date:2018-12-11T14:30:30Z[Etc/UTC]
Programa 2 :
// Java program to demonstrate the adjustInto() // method exceptions import java.time.OffsetTime; import java.time.ZonedDateTime; public class GFG { public static void main(String[] args) { try { // Current time // Current time ZonedDateTime date = ZonedDateTime.now(); // Prints the current time System.out.println("Current date:" + date); // Parsed the date OffsetTime date1 = OffsetTime.parse("25:30:30+05:00"); // Adjusts date = (ZonedDateTime)date1.adjustInto(date); System.out.println("Adjusted date:" + date); } catch (Exception e) { System.out.println(e); } } }
Producción:
Current date:2018-12-11T10:01:42.520Z[Etc/UTC] java.time.format.DateTimeParseException: Text '25:30:30+05:00' could not be parsed: Invalid value for HourOfDay (valid values 0 - 23): 25
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#adjustInto-java.time.temporal.Temporal-