OffsetDateTime 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.OffsetDateTime; import java.time.temporal.ChronoUnit; /* w w w . j av a2 s.c om*/ public class Main { public static void main(String[] args) { OffsetDateTime o = OffsetDateTime.now(); boolean l = o.isSupported(ChronoUnit.DAYS); System.out.println(l); } }
The code above generates the following result.