LocalDateTime isSupported(TemporalUnit unit)
checks if the specified unit is supported.
The supported units are:
All other ChronoUnit instances will return false.
isSupported
has the following syntax.
public boolean isSupported(TemporalUnit unit)
The following example shows how to use isSupported
.
import java.time.LocalDateTime; import java.time.temporal.ChronoUnit; /* w w w . j a v a 2s. co m*/ public class Main { public static void main(String[] args) { LocalDateTime a = LocalDateTime.of(2014, 6, 30, 12, 01); System.out.println(a.isSupported(ChronoUnit.DAYS)); } }
The code above generates the following result.