List of usage examples for java.time MonthDay isBefore
public boolean isBefore(MonthDay other)
From source file:Main.java
public static void main(String[] args) { MonthDay m = MonthDay.now(); System.out.println(m.isBefore(MonthDay.of(Month.APRIL, 1))); }