Example usage for java.time OffsetTime withOffsetSameLocal

List of usage examples for java.time OffsetTime withOffsetSameLocal

Introduction

In this page you can find the example usage for java.time OffsetTime withOffsetSameLocal.

Prototype

public OffsetTime withOffsetSameLocal(ZoneOffset offset) 

Source Link

Document

Returns a copy of this OffsetTime with the specified offset ensuring that the result has the same local time.

Usage

From source file:Main.java

public static void main(String[] args) {
    OffsetTime m = OffsetTime.now();
    OffsetTime l = m.withOffsetSameLocal(ZoneOffset.UTC);
    System.out.println(l);//w w w.  j  ava2s .c o m

}