MonthDay getMonthValue() method in Java with Examples Last Updated : 06 Dec, 2018 Summarize Comments Improve Suggest changes Share Like Article Like Report The getMonthValue() method of MonthDay class in Java gets the month-of-year field from 1 to 12. Syntax: public int getMonthValue() Parameter: This method accepts no parameters. Returns: The function returns the month-of-year, from 1 to 12. Below programs illustrate the MonthDay.getMonthValue() method: Program 1: Java // Program to illustrate the getMonthValue() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date MonthDay tm1 = MonthDay.parse("--12-06"); // Uses the function LocalDate dt1 = tm1.atYear(2018); // Prints the date System.out.println(dt1.getMonthValue()); } } Output: 12 Program 2: Java // Program to illustrate the getMonthValue() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the date MonthDay tm1 = MonthDay.parse("--01-09"); // Uses the function LocalDate dt1 = tm1.atYear(2016); // Prints the date System.out.println(dt1.getMonthValue()); } } Output: 1 Reference: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#getMonthValue-- Comment More infoAdvertise with us Next Article MonthDay getLong() method in Java with Examples G gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-MonthDay Practice Tags : Java Similar Reads MonthDay getMonth() method in Java with Examples The getMonth() method of MonthDay class in Java obtains an instance of MonthDay from a temporal object. Syntax: public Month getMonth() Parameter: This method accepts no parameters. Returns: The function returns the month-of-year and not null. Below programs illustrate the MonthDay.getMonth() method 1 min read MonthDay getDayOfMonth() method in Java with Examples The getDayOfMonth() method of MonthDay class in Java gets the day-of-month field. Syntax: public int getDayOfMonth() Parameter: This method accepts no parameters. Returns: The function returns the day-of-month, from 1 to 31. Below programs illustrate the MonthDay.getDayOfMonth() method: Program 1: J 1 min read MonthDay getLong() method in Java with Examples The getLong() method of MonthDay class in Java gets the value of the specified field from this month-day as an long. Syntax: public long getLong(TemporalField field) Parameter: This method accepts a parameter field which specifies the field to getLong and not null. Returns: The function returns the 2 min read MonthDay get() method in Java with Examples The get() method of MonthDay class in Java gets the value of the specified field from this month-day as an int. Syntax: public int get(TemporalField field) Parameter: This method accepts a parameter field which specifies the field to get and not null. Returns: The function returns the value for the 2 min read OffsetDateTime getMonthValue() method in Java with examples The getMonthValue() method of OffsetDateTime class in Java gets the month-of-year field using the Month enum. Syntax : public int getMonthValue() Parameter : This method does not accepts any parameter. Return Value: It returns the month-of-year which ranges from 1 to 12. Below programs illustrate th 1 min read MonthDay hashCode() method in Java with Examples hashCode() method of the MonthDay class used to get hashCode for this MonthDay. The hashcode is always the same if the object doesnât change. Hashcode is a unique code generated by the JVM at time of object creation. It can be used to perform some operation on hashing related algorithm like a hashta 1 min read Like