Open In App

OffsetTime from() method in Java with examples

Last Updated : 13 Dec, 2018
Comments
Improve
Suggest changes
Like Article
Like
Report
The from() method of OffsetTime class in Java obtains an instance of OffsetTime from a temporal object which is passed in the parameter of the method. Syntax:
public static OffsetTime from(TemporalAccessor temporal)
Parameter: This method accepts a single mandatory parameter temporal which specifies the temporal object to be converted and it is not null. Return Value: It returns the offset time and not null. Below programs illustrate the from() method: Program 1 : Java
// Java program to demonstrate the from() method

import java.time.OffsetTime;
import java.time.ZonedDateTime;

public class GFG {
    public static void main(String[] args)
    {

        // Function called to get current time
        OffsetTime time
            = OffsetTime.from(ZonedDateTime.now());

        // Prints the current time
        System.out.println("Current-time: "
                           + time);
    }
}
Output:
Current-time: 13:07:59.941Z
Program 2 : Java
// Java program to demonstrate the from() method

import java.time.OffsetTime;
import java.time.ZonedDateTime;

public class GFG {
    public static void main(String[] args)
    {

        // Function called to get current time
        OffsetTime time
            = OffsetTime.from(ZonedDateTime.now());

        // Prints the current time
        System.out.println("Current-time: "
                           + time);
    }
}
Output:
Current-time: 13:08:03.087Z
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#from-java.time.temporal.TemporalAccessor-

Next Article
Practice Tags :

Similar Reads