java.time.LocalTime.atOffset() Method Example



Description

The java.time.LocalTime.atOffset(ZoneOffset offset) method combines this time with an offset to create an OffsetTime.

Declaration

Following is the declaration for java.time.LocalTime.atOffset(ZoneOffset offset) method.

public OffsetDateTime atOffset(ZoneOffset offset)

Parameters

offset − the offset to combine with, not null.

Return Value

the offset time formed from this time, not null.

Example

The following example shows the usage of java.time.LocalTime.atOffset(ZoneOffset offset) method.

package com.tutorialspoint;

import java.time.LocalTime;
import java.time.OffsetTime;
import java.time.ZoneOffset;

public class LocalTimeDemo {
   public static void main(String[] args) {
      
      LocalTime time = LocalTime.parse("12:30:30");
      System.out.println(time);  
      OffsetTime time1 = time.atOffset(ZoneOffset.ofHours(2));
      System.out.println(time1);  
   }
}

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

12:30:30
12:30:30+02:00
Advertisements