![]() |
The adjustInto() method of ChronoLocalDateTime interface in Java is used to adjusts the specified temporal object to have the same date as this object. Syntax: default Temporal adjustInto(Temporal temporal) Parameter: This method accepts a single parameter temporal which is the target object to be adjusted, and not specifically null. Return Value: It returns the adjusted object, not null. Exceptions: The function throws two exceptions as described below:
Below programs illustrate the adjustInto() method of ChronoLocalDateTime in Java: Program 1:
Output:
2018-12-06T19:21:12 2019-05-14T09:39:37.953 Program 2: To illustrate Exception. The below program throws an exception as February is of 28 days and not 31 days.
Output:
2018-12-06T19:21:12 java.time.format.DateTimeParseException: Text '2015-02-31' could not be parsed at index 10 |
Reffered: https://www.geeksforgeeks.org
Java |
Type: | Geek |
Category: | Coding |
Sub Category: | Tutorial |
Uploaded by: | Admin |
Views: | 10 |