Instant isSupported(TemporalUnit unit) example

Description

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

Syntax

isSupported has the following syntax.


public boolean isSupported(TemporalUnit unit)

Example

The following example shows how to use isSupported.


import java.time.Instant;
import java.time.temporal.ChronoUnit;
//from   w  ww  . j  a v  a2s. c  o  m
public class Main {
  public static void main(String[] args) {
    Instant instant = Instant.parse("2014-12-03T10:15:30.00Z");
    System.out.println(instant.isSupported(ChronoUnit.DAYS));
    
  }
}

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