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.