Java Date Time - LocalDate isSupported(TemporalUnit unit) example








LocalDate isSupported(TemporalUnit unit) checks if the specified unit is supported.

The supported units are:

DAYS 
WEEKS 
MONTHS 
YEARS 
DECADES 
CENTURIES 
MILLENNIA 
ERAS

All other ChronoUnit instances will return false.





Syntax

isSupported has the following syntax.

public boolean isSupported(TemporalUnit unit)

Example

The following example shows how to use isSupported.

import java.time.LocalDate;
import java.time.temporal.ChronoUnit;
/*from   w  w w. ja  v a  2  s  .co m*/
public class Main {
  public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.isSupported(ChronoUnit.DAYS));
  }
}

The code above generates the following result.