ZoneId getId() method in Java with Examples
The getId() method of the ZoneId class in Java is used to get the unique time-zone ID which uniquely defines this object.
Syntax:
public String getId(Object obj)
Parameters: This method accepts nothing.
Return value: This method returns the time-zone unique ID.
Below programs illustrate the getId() method:
Program 1:
// Java program to demonstrate // ZoneId.getId() method import java.time.*; public class GFG { public static void main(String[] args) { // create ZoneId object ZoneId zoneId = ZoneId.of( "Europe/Paris" ); // get and print Id System.out.println( "Id: " + zoneId.getId()); } } |
chevron_right
filter_none
Output:
Id: Europe/Paris
Program 2:
// Java program to demonstrate // ZoneId.getId() method import java.time.*; public class GFG { public static void main(String[] args) { // create ZoneId object ZoneId zoneId = ZoneId.of( "Asia/Calcutta" ); // get and print Id System.out.println( "Id: " + zoneId.getId()); } } |
chevron_right
filter_none
Output:
Id: Asia/Calcutta
Reference:
https://docs.oracle.com/javase/10/docs/api/java/time/ZoneId.html#getId()
Recommended Posts:
- ZoneOffset getId() method in Java with Examples
- TimeZone getID() Method in Java with Examples
- ZoneId from() method in Java with Examples
- ZoneId getAvailableZoneIds() method in Java with Examples
- ZoneId getDisplayName() method in Java with Examples
- ZoneId equals() method in Java with Examples
- ZoneId getRules() method in Java with Examples
- ZoneId systemDefault() method in Java with Examples
- ZoneId toString() method in Java with Examples
- ZoneId normalized() method in Java with Examples
- ZoneId hashCode() method in Java with Examples
- ZoneId ofOffset() method in Java with Examples
- Java lang.Long.reverse() method in Java with Examples
- Java lang.Long.byteValue() method in Java with Examples
- Java lang.Long.lowestOneBit() 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.
Improved By : Kirti_Mangal