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:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
Year year = Year.of( 2019 );
System.out.println( "Year :"
+ year);
int value
= year.get(ChronoField.YEAR);
System.out.println( "Year Field: "
+ value);
}
}
|
Output:
Year :2019
Year Field: 2019
Program 2:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
Year year = Year.of( 2019 );
System.out.println( "Year :"
+ year);
int value
= year.get(ChronoField.ERA);
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)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
16 Jan, 2019
Like Article
Save Article