YearMonth isBefore(YearMonth other) example
Description
YearMonth isBefore(YearMonth other)
check if this year-month is
before the specified year-month.
Syntax
isBefore
has the following syntax.
public boolean isBefore(YearMonth other)
Example
The following example shows how to use isBefore
.
import java.time.YearMonth;
// ww w. j a va 2s . c o m
public class Main {
public static void main(String[] args) {
YearMonth y = YearMonth.now();
System.out.println(y.isBefore(YearMonth.now()));
}
}
The code above generates the following result.