java.time.ZoneOffset.ofTotalSeconds() Method Example



Description

The java.time.ZoneOffset.ofTotalSeconds(int totalSeconds) method obtains an instance of ZoneOffset specifying the total offset in seconds.

Declaration

Following is the declaration for java.time.ZoneOffset.ofTotalSeconds(int totalSeconds) method.

public static ZoneOffset ofTotalSeconds(int totalSeconds)

Parameters

totalSeconds − the total time-zone offset in seconds, from -64800 to +64800.

Return Value

the zone-offset, not null.

Exceptions

DateTimeException − if the offset is not in the required range.

Example

The following example shows the usage of java.time.ZoneOffset.ofTotalSeconds(int totalSeconds) method.

package com.tutorialspoint;

import java.time.ZoneOffset;

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

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

+01:00
Advertisements