YearMonth get() method in Java with Examples Last Updated : 08 May, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report The get() method of the YearMonth class in Java is used to get the value of the specified field from this year-month as an integer value. This method queries this year-month for the value of the specified field. The returned value will always be within the valid range. An exception is thrown if it is not possible to return the value because the field is not supported or for some other reason. Syntax: public int get(TemporalField field) Parameters: This method accepts field as parameters which represents the TemporalField whose value is required. Return value: This method returns the value for the field. Exception: The method throws following exceptions: DateTimeException - if a value for the field cannot be obtained or the value is outside the range of valid values for the field. UnsupportedTemporalTypeException - if the field is not supported or the range of values exceeds an int. ArithmeticException - if numeric overflow occurs. Below programs illustrate the get() method of YearMonth in Java: Program 1: Java // Java program to demonstrate // YearMonth.get() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create YearMonth object YearMonth yearmonth = YearMonth.of(2020, 5); // apply get() method of // YearMonth class to get year // It will store year // in variable of type int int year = yearmonth.get( ChronoField.YEAR_OF_ERA); // print year System.out.println("YEAR: " + year); } } Output: YEAR: 2020 Program 2: Java // Java program to demonstrate // YearMonth.get() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create YearMonth object YearMonth yearmonth = YearMonth.of(2020, 5); // apply get() method of // YearMonth class to get month // It will store month // in variable of type int int month = yearmonth.get( ChronoField.MONTH_OF_YEAR); // print month System.out.println("MONTH: " + month); } } Output: MONTH: 5 References: https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#get(java.time.temporal.TemporalField) Comment More infoAdvertise with us Next Article YearMonth get() method in Java with Examples P pp_pankaj Follow Improve Article Tags : Java Java-Functions Java-YearMonth Practice Tags : Java Similar Reads YearMonth getLong() method in Java with Examples getLong() method of the YearMonth class in Java is used to get the value of the specified field from this year-month as a long value. This method queries this year-month for the value of the specified field. An exception is thrown if it is not possible to return the value because the field is not su 2 min read Year get() method in Java with Examples get() method of the Year class used to get the value for the specified field passed as parameter from this Year as an integer value. This method queries this year for the value of the field and the returned value will always be within the valid range of values for the field. When the field is not su 2 min read YearMonth now() method in Java with Examples The now() method of the YearMonth class in Java is used to obtain the current year-month from the system clock in the default time-zone. Syntax: public static YearMonth now() Parameters: This method does not accept any parameter. Return value: This method returns the current year-month using the sys 1 min read Year getLong() method in Java with Examples getLong() method of the Year class used to gets the value as a long value from this Year for the specified field passed as parameter. This method queries this Year for the value of the field and the returned value will always be within the valid range of values for the field. When the field is not s 2 min read Year getValue() method in Java with Examples The getValue() method of Year class in Java is used to get the integral value of the current Year object. Syntax: public int getValue() Parameter: This method does not accepts any parameter. Return Value: It returns an integer denoting the value of the current year object. Below programs illustrate 1 min read Like