Instant isSupported(TemporalUnit unit)
checks if
the specified unit is supported.
isSupported
has the following syntax.
public boolean isSupported(TemporalUnit unit)
The following example shows how to use isSupported
.
import java.time.Instant; import java.time.temporal.ChronoUnit; /*from ww w. j a va 2 s .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.