Example usage for java.time OffsetTime MIN

List of usage examples for java.time OffsetTime MIN

Introduction

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

Prototype

OffsetTime MIN

To view the source code for java.time OffsetTime MIN.

Click Source Link

Document

The minimum supported OffsetTime , '00:00:00+18:00'.

Usage

From source file:Main.java

public static void main(String[] args) {
    OffsetTime m = OffsetTime.MIN;

    System.out.println(m);

}