OffsetTime MAX
defines the maximum supported OffsetTime, '23:59:59.999999999-18:00'.
MAX
has the following syntax.
public static final OffsetTime MAX
The following example shows how to use MAX
.
import java.time.OffsetTime; /* w ww . j a va 2s . c om*/ public class Main { public static void main(String[] args) { OffsetTime m = OffsetTime.MAX; System.out.println(m); } }
The code above generates the following result.