Year getLong() method in Java with Examples Last Updated : 16 Jan, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 supported and method is unable to return int value then an exception is thrown. Syntax: public long getLong(TemporalField field) Parameters: This method accepts field as parameter which is the field to get. Return value: This method returns the value for the field. 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: Program 1: Java // Java program to demonstrate // Year.getLong() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a Year object Year year = Year.of(2019); // print instance System.out.println("Year :" + year); // apply getLong method long value = year.getLong(ChronoField.YEAR_OF_ERA); // print result System.out.println("YEAR_OF_ERA Field: " + value); } } Output: Year :2019 YEAR_OF_ERA Field: 2019 Program 2: Java // Java program to demonstrate // Year.getLong() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create a Year object Year year = Year.of(2019); // print instance System.out.println("Year :" + year); // apply getLong method long value = year.getLong(ChronoField.YEAR); // print result System.out.println("YEAR Field: " + value); } } Output: Year :2019 YEAR Field: 2019 References: https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#getLong(java.time.temporal.TemporalField) Comment More infoAdvertise with us Next Article Year getLong() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java Java-Functions Java-time package Java-Year Practice Tags : Java Similar Reads 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 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 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 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 from() Method in Java with Examples from() method of the Year class used to get instance of Year from TemporalAccessor object passed as parameter. A TemporalAccessor represents an arbitrary set of date and time information and this method helps to get a year object based on the specified TemporalAccessor object. Syntax: public static 2 min read Like