OffsetTime MIN
defines the minimum supported OffsetTime, '00:00:00+18:00'.
MIN
has the following syntax.
public static final OffsetTime MIN
The following example shows how to use MIN
.
import java.time.OffsetTime; /*from w ww .j a v 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.