java.time.ZoneOffset.getId() Method Example



Description

The java.time.ZoneOffset.getId() method gets the unique offset ID.

Declaration

Following is the declaration for java.time.ZoneOffset.getId() method.

public abstract String getId()

Return Value

the offset unique ID, not null

Example

The following example shows the usage of java.time.ZoneOffset.getId() method.

package com.tutorialspoint;

import java.time.ZoneOffset;

public class ZoneOffsetDemo {
   public static void main(String[] args) {
 
      ZoneOffset zoneOffset = ZoneOffset.of("Z");
      System.out.println(zoneOffset.getId());  
   }
}

Let us compile and run the above program, this will produce the following result −

Z
Advertisements