java.time.ZoneOffset.of() Method Example



Description

The java.time.ZoneOffset.of(String offsetId) method obtains an instance of ZoneOffset using the ID.

Declaration

Following is the declaration for java.time.ZoneOffset.of(String offsetId) method.

public static ZoneOffset of(String offsetId)

Parameters

offsetId − the offset ID, not null.

Return Value

the zone-offset, not null.

Exceptions

DateTimeException − if the offset ID is invalid.

Example

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

package com.tutorialspoint;

import java.time.ZoneOffset;

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

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

Z
Advertisements