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.





















Home »
  Java Date Time »
    java.time Reference »




Clock
DayOfWeek
Duration
Instant
LocalDate
LocalDateTime
LocalTime
Month
MonthDay
OffsetDateTime
OffsetTime
Period
Year
YearMonth
ZonedDateTime
ZoneId
ZoneOffset