MonthDay isValidYear(int year) example

Description

MonthDay isValidYear(int year) checks if the year is valid for this month-day.

Syntax

isValidYear has the following syntax.


public boolean isValidYear(int year)

Example

The following example shows how to use isValidYear.


import java.time.MonthDay;
/*from w  w w  . j a v  a 2  s.  c  o m*/
public class Main {
  public static void main(String[] args) {
    MonthDay m = MonthDay.now();
    boolean n = m.isValidYear(2010);
    System.out.println(n);

  }
}

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