LocalDate get() method in Java with Examples Last Updated : 28 Nov, 2018 Comments Improve Suggest changes Like Article Like Report The get() method of LocalDate class in Java method gets the value of the specified field from this Date as an int. Syntax: public int get(TemporalField field) Parameter: This method accepts a parameter field which is the field to get and not necessary null. Return Value: It returns the value for the field. Exceptions: The function throws three exceptions as described below: DateTimeException: this exception is thrown if a value for the field cannot be obtained or the value is outside the range of valid values for the field. UnsupportedTemporalTypeException: this exception is thrown if the field is not supported or the range of values exceeds an int ArithmeticException: this exception is thrown if numeric overflow occurs Below programs illustrate the get() method of LocalDate in Java: Program 1: Java // Program to illustrate the get() method import java.util.*; import java.time.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { LocalDate dt = LocalDate.parse("2017-02-16"); System.out.println(dt.get(ChronoField.MONTH_OF_YEAR)); } } Output: 2 Program 2: Java // Program to illustrate the get() method // Exception Program import java.util.*; import java.time.*; import java.time.temporal.ChronoField; public class GfG { public static void main(String[] args) { try { LocalDate dt = LocalDate.parse("2017-02-30"); System.out.println(dt.get(ChronoField.MONTH_OF_YEAR)); } catch (Exception e) { System.out.println(e); } } } Output: java.time.format.DateTimeParseException: Text '2017-02-30' could not be parsed: Invalid date 'FEBRUARY 30' Reference: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/TemporalField.htmlhttps://docs.oracle.com/javase/10/docs/api/java/time/temporal/TemporalField.html Comment More infoAdvertise with us Next Article LocalDate get() method in Java with Examples G gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-LocalDate Practice Tags : Java Similar Reads LocalDate getEra() method in Java with Examples The getEra() method of LocalDate class in Java gets the era applicable at this date. Syntax: public Era getEra() Parameter: This method does not accepts any parameter. Return Value: The function returns the IsoChronology era constant applicable at this date and not null. Below programs illustrate th 1 min read LocalTime get() method in Java with Examples The get() method of a LocalTime class helps to get the value for the specified field passed as a parameter from this LocalTime as an integer value. This method queries this time for the value of the field and the returned value will always be within the valid range of values for the field. When the 2 min read LocalDate getYear() method in Java with Examples The getYear() method of LocalDate class in Java gets the year field. Syntax: public int getYear() Parameter: This method does not accepts any parameter. Return Value: The function returns the year, from MIN_YEAR to MAX_YEAR Below programs illustrate the getYear() method of LocalDate in Java: Program 1 min read LocalDateTime getYear() method in Java with Examples The getYear() method of an LocalDateTime class is used to return the year field.This method returns the primitive int value for the year from MIN_YEAR to MAX_YEAR. Syntax: public int getYear() Parameter: This method does not accept any parameter. Returns: This method returns an integer value which i 1 min read LocalDateTime getHour() method in Java with Examples The getHour() method of an LocalDateTime class is used to return the hour-of-day field. This method returns an integer value ranging from 0 to 23, i.e. the Hours of a day. Syntax: public int getHour() Parameter: This method does not accept any parameter. Returns: This method returns an integer value 1 min read Like