LocalTime from() method in Java with Examples
The from() method of a LocalTime class helps to get instance of LocalTime from TemporalAccessor object passed as parameter to method. A TemporalAccessor represents an arbitrary set of date and time information and this method helps to get a LocalTime based on the specified TemporalAccessor object.
Syntax:
public static LocalTime from(TemporalAccessor temporal)
Parameters: This method accepts a single parameter temporal which is the temporal object. It should not be null.
Return value: This method returns the local time from temporal object, not null
Exception: This method throws a DateTimeException if unable to convert to a LocalTime.
Below programs illustrate the from() method:
Program 1:
// Java program to demonstrate // LocalTime.from() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zonedDateTime = ZonedDateTime.now(); // apply form() LocalTime value = LocalTime.from(zonedDateTime); // print result System.out.println( "LocalTime value : " + value); } } |
LocalTime value : 06:17:32.760
Program 2:
// Java program to demonstrate // LocalTime.from() method import java.time.*; public class GFG { public static void main(String[] args) { // create a OffsetDateTime object OffsetDateTime offset = OffsetDateTime.now(); // apply form() LocalTime value = LocalTime.from(offset); // print result System.out.println( "LocalTime value : " + value); } } |
LocalTime value : 06:17:35.131
Recommended Posts:
- LocalTime with() Method in Java with Examples
- LocalTime get() method in Java with Examples
- LocalTime plus() method in Java with Examples
- LocalTime until() Method in Java with Examples
- LocalTime minusHours() method in Java with Examples
- LocalTime plusNanos() method in Java with Examples
- LocalTime plusHours() method in Java with Examples
- LocalTime minusSeconds() method in Java with Examples
- LocalTime query() Method in Java with Examples
- LocalTime minusNanos() method in Java with Examples
- LocalTime minusMinutes() method in Java with Examples
- LocalTime plusSeconds() method in Java with Examples
- LocalTime withMinute() method in Java with Examples
- LocalTime withSecond() method in Java with Examples
- LocalTime withNano() method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.