Year get() method in Java with Examples Last Updated : 16 Jan, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report 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 supported and method is unable to return int value then an exception is thrown. Syntax: public int get(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 get() method: Program 1: Java // Java program to demonstrate // Year.get() 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 get method int value = year.get(ChronoField.YEAR); // print result System.out.println("Year Field: " + value); } } Output: Year :2019 Year Field: 2019 Program 2: Java // Java program to demonstrate // Year.get() 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 get method int value = year.get(ChronoField.ERA); // print result System.out.println("ERA Field: " + value); } } Output: Year :2019 ERA Field: 1 References: https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#get(java.time.temporal.TemporalField) Comment More infoAdvertise with us Next Article Year get() 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 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 Year format() method in Java with Examples The format() method of Year class in Java is used to format the current Year object according to the DateTimeFormatter passed to it as a parameter. Syntax: public String format(DateTimeFormatter formatter) Parameter: This method accepts a single parameter formatter. It specifies a DateTimeFormatter 2 min read Year of() method in Java with Examples The of() method of Year class in Java is used to return an Year instance. It accepts an year according to the proleptic ISO calendar system and returns an instance of Year with the specified isoYear. Syntax: public static Year of(int isoYear) Parameter: It accepts a single integral value isoYear as 1 min read Like