LocalTime MIN
defines the minimum supported LocalTime, '00:00'.
This is the time of midnight at the start of the day.
MIN
has the following syntax.
public static final LocalTime MIN
The following example shows how to use MIN
.
import java.time.LocalTime; public class Main { public static void main(String[] args) { LocalTime l = LocalTime.MIN; System.out.println(l); } }
The code above generates the following result.