ChronoZonedDateTime isSupported(TemporalField) method in Java with Examples Last Updated : 29 May, 2019 Comments Improve Suggest changes Like Article Like Report The isSupported() method of ChronoZonedDateTime interface in Java checks if the specified TemporalField is supported or not. Syntax: default boolean isSupported(TemporalField field) Parameter: This method accepts a parameter field which specifies the TemporalField to check, null returns false. Returns: The function returns true if the field is supported on this date, false if not. Below programs illustrate the ChronoZonedDateTime.isSupported() method: Program 1: Java // Program to illustrate the isSupported(TemporalField) method import java.util.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { // Parses the date ChronoZonedDateTime dt1 = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); // Prints the date System.out.println(dt1); System.out.println( dt1.isSupported( ChronoField.DAY_OF_WEEK)); } } Output: 2018-12-06T19:21:12.123+05:30[Asia/Calcutta] true Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#isSupported-java.time.temporal.TemporalField- Comment More infoAdvertise with us Next Article ChronoZonedDateTime isSupported(TemporalField) method in Java with Examples S ShubhamMaurya3 Follow Improve Article Tags : Misc Java Java-Functions Java-ChronoZonedDateTime Java-Time-Chrono package +1 More Practice Tags : JavaMisc Similar Reads ChronoLocalDateTime isSupported(TemporalField ) method in Java with Examples The isSupported() method of ChronoLocalDateTime interface in Java checks if the specified TemporalField is supported or not. Syntax: default boolean isSupported(TemporalField field) Parameter: This method accepts a parameter field which specifies the TemporalField to check, null returns false. Retur 1 min read ChronoZonedDateTime isSupported(TemporalUnit) method in Java with Examples The isSupported() method of ChronoZonedDateTime interface in Java checks if the specified TemporalUnit is supported or not. Syntax: default boolean isSupported(TemporalUnit unit) Parameter: This method accepts a parameter unit which specifies the TemporalUnit to check, null returns false. Returns: T 1 min read ChronoLocalDateTime isSupported(TemporalUnit) method in Java with Examples The isSupported() method of ChronoLocalDateTime interface in Java checks if the specified TemporalUnit is supported or not. Syntax: default boolean isSupported(TemporalUnit unit) Parameter: This method accepts a parameter unit which specifies the TemporalUnit to check, null returns false. Returns: T 1 min read ChronoZonedDateTime with(TemporalField, long) method in Java with Examples The with(TemporalField field, long newValue) method of the ChronoZonedDateTime interface is used to set the specified field of ChronoZonedDateTime to a new value and returns the copy of new time. This method can be used to change any supported field, such as year, day, month, hour, minute or second. 2 min read ChronoZonedDateTime isAfter() method in Java with Examples The isAfter() method of ChronoZonedDateTime interface in Java is used to check if the date, passed as the parameter, is after this ChronoZonedDateTime instance or not. It returns a boolean value showing the same. Syntax: public boolean isAfter(ChronoZonedDateTime otherDate) Parameter: This method ac 2 min read Like