LocalDate MIN
defines the minimum supported LocalDate, '-999999999-01-01'.
MIN
has the following syntax.
public static final LocalDate MIN
The following example shows how to use MIN
.
import java.time.LocalDate; public class Main { public static void main(String[] args) { LocalDate a = LocalDate.MIN; System.out.println(a); } }
The code above generates the following result.