LocalTime 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.LocalTime; import java.time.temporal.ChronoUnit; /*from w w w . j ava 2 s .com*/ public class Main { public static void main(String[] args) { LocalTime l = LocalTime.now(); System.out.println(l.isSupported(ChronoUnit.MINUTES)); } }
The code above generates the following result.