YearMonth getLong() method in Java with Examples Last Updated : 08 May, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 supported or for some other reason. Syntax: public long getLong(TemporalField field) Parameters: This method accepts field as parameter which represents the TemporalField to whose value is required. Return value: This method returns the value for the field as a long. Exception: This 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 getLong() method of YearMonth in Java: Program 1: Java // Java program to demonstrate // YearMonth.getLong() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create YearMonth object YearMonth yearmonth = YearMonth.of(2019, 4); // apply getLong() method // of YearMonth class to get year long year = yearmonth.getLong( ChronoField.YEAR_OF_ERA); // It will store only year // in variable of type long // print results System.out.println("YEAR: " + year); } } Output: YEAR: 2019 Program 2: Java // Java program to demonstrate // YearMonth.getLong() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create YearMonth object YearMonth yearmonth = YearMonth.of(2019, 4); // apply getLong() method // of YearMonth class to get month long month = yearmonth.getLong( ChronoField.MONTH_OF_YEAR); // It will store only month // in variable of type long // print results System.out.println("MONTH: " + month); } } Output: MONTH: 4 References: https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#getLong(java.time.temporal.TemporalField) Comment More infoAdvertise with us Next Article YearMonth getLong() method in Java with Examples P pp_pankaj Follow Improve Article Tags : Java Java-Functions Java-YearMonth Practice Tags : Java Similar Reads YearMonth get() method in Java with Examples 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 i 2 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 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 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 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 Like