Open In App

ZoneOffset getId() method in Java with Examples

Last Updated : 11 Dec, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

The getId() method of ZoneOffset Class in java.time package is used to obtain offset ID in this instance of ZoneOffset. This method does not takes any parameter and returns an String value. which is the offset ID.

Syntax:

public static String getId()

Parameters: This method accepts do not accepts any parameter.

Return Value: This method returns an String value which is the offset ID of this ZoneOffset instance.

Below examples illustrate the ZoneOffset.getId() method:

Example 1:




// Java code to illustrate getId() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the ZoneOffset
        ZoneOffset zoneOffset
            = ZoneOffset.ofHours(5);
  
        System.out.println(zoneOffset);
  
        // Using getId() method
        String id = zoneOffset.getId();
  
        System.out.println("ZoneOffset ID: " 
+ id);
    }
}


Output:

+05:00
ZoneOffset ID: +05:00

Example 2:




// Java code to illustrate getId() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Get the ZoneOffset
        ZoneOffset zoneOffset
            = ZoneOffset.of("Z");
  
        System.out.println(zoneOffset);
  
        // Using getId() method
        String id = zoneOffset.getId();
  
        System.out.println("ZoneOffset ID: " 
+ id);
    }
}


Output:

Z
ZoneOffset ID: Z

Reference: Oracle Doc



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads