ZonedDateTime isSupported(TemporalUnit unit) example

Description

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

The supported units are:


NANOS 
MICROS 
MILLIS 
SECONDS 
MINUTES 
HOURS 
HALF_DAYS 
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.ZonedDateTime;
import java.time.temporal.ChronoUnit;
/* w  w w .j ava 2  s .  c  o m*/
public class Main {
  public static void main(String[] args) {
    ZonedDateTime dateTime =ZonedDateTime.now();

    System.out.println(dateTime.isSupported(ChronoUnit.YEARS));
  } 
}

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