Example usage for java.time OffsetTime of

List of usage examples for java.time OffsetTime of

Introduction

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

Prototype

public static OffsetTime of(LocalTime time, ZoneOffset offset) 

Source Link

Document

Obtains an instance of OffsetTime from a local time and an offset.

Usage

From source file:Main.java

public static void main(String[] args) {
    OffsetTime m = OffsetTime.of(LocalTime.now(), ZoneOffset.UTC);

    System.out.println(m);

}