Open In App

MonthDay isSupported() Method in Java with Examples

Last Updated : 20 Jul, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

isSupported() method of the MonthDay class used to Check if the specified field is supported by MonthDay class or not means using this method we can check if this MonthDay can be queried for the specified field. 

The supported fields of ChronoField are: 

  • MONTH_OF_YEAR
  • YEAR

All other ChronoField instances will return false.

Syntax:  

public boolean isSupported(TemporalField field)

Parameters: This method accepts one parameter field which is the field to check.
Return value: This method returns boolean value true if the field is supported on this MonthDay, false if not.

Below programs illustrate the isSupported() method: 

Program 1:  

Java




// Java program to demonstrate
// MonthDay.isSupported() method
 
import java.time.*;
import java.time.temporal.ChronoField;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
 
        // apply isSupported() method
        boolean value
            = month.isSupported(
                ChronoField.MONTH_OF_YEAR);
 
        // print result
        System.out.println("MONTH_OF_YEAR Field is supported: "
                           + value);
    }
}


Output: 

MONTH_OF_YEAR Field is supported: true

 

Program 2: 

Java




// Java program to demonstrate
// MonthDay.isSupported() method
 
import java.time.*;
import java.time.temporal.ChronoField;
 
public class GFG {
    public static void main(String[] args)
    {
        // create a MonthDay object
        MonthDay month = MonthDay.parse("--10-12");
 
        // apply isSupported() method
        boolean value
            = month.isSupported(
                ChronoField.MILLI_OF_SECOND);
 
        // print result
        System.out.println("MilliSecond Field is supported: "
                           + value);
    }
}


Output

MilliSecond Field is supported: false

References: https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#isSupported(java.time.temporal.TemporalField)
 



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads