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