OffsetTime MIN example
Description
OffsetTime MIN
defines the minimum supported OffsetTime, '00:00:00+18:00'.
Syntax
MIN
has the following syntax.
public static final OffsetTime MIN
Example
The following example shows how to use MIN
.
import java.time.OffsetTime;
//from w w w . j av a 2 s . c o m
public class Main {
public static void main(String[] args) {
OffsetTime m = OffsetTime.MIN;
System.out.println(m);
}
}
The code above generates the following result.