VOOZH about

URL: https://www.geeksforgeeks.org/java/chronolocaldatetime-from-method-in-java-with-examples/

⇱ ChronoLocalDateTime from() method in Java with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

ChronoLocalDateTime from() method in Java with Examples

Last Updated : 29 May, 2019
The from() method of ChronoLocalDateTime interface is used to obtain an instance of ChronoLocalDateTime from the temporal object passed as the parameter. Syntax:
static ChronoLocalDateTime<T> 
 from(TemporalAccessor temporal)
Parameter: This method accepts a parameter temporal which specifies the TemporalAccessor object to be converted to the ChronoLocalDateTime instance. It should not be null. Returns: The function returns the ChronoLocalDateTime which is the converted ChronoLocalDateTime from the temporal object. Exceptions: The program throws DateTimeException which is thrown if it is unable to convert the given date to a ChronoLocalDateTime. Below programs illustrate the ChronoLocalDateTime.from() method: Program 1:
Output:
2019-05-29T11:53:52.135
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDateTime.html#from-java.time.temporal.TemporalAccessor-
Comment