Month getValue() method in Java Last Updated : 22 Mar, 2019 Comments Improve Suggest changes Like Article Like Report The getValue() method is a built-in method of the Month ENUM which is used to get the value of the month-of-year from this Month instance as an integer. The value returned by this method is in the range of 1-12, representing months from January to December. Syntax: public int getValue() Parameters: This method does not accepts any parameters. Return Value: This method returns the value of month-of-year from this Month instance as an integer. Below programs illustrate the above method: Program 1: Java import java.time.*; import java.time.Month; import java.time.temporal.ChronoField; class monthEnum { public static void main(String[] args) { // Create a month instance Month month = Month.MARCH; // Get the value of month-of-year as int System.out.println(month.getValue()); } } Output: 3 Program 2: Java import java.time.*; import java.time.Month; import java.time.temporal.ChronoField; class monthEnum { public static void main(String[] args) { // Create a month instance Month month = Month.DECEMBER; // Get the value of month-of-year as int System.out.println(month.getValue()); } } Output: 12 Reference: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#getValue-- Comment More infoAdvertise with us Next Article Month getValue() method in Java G gopaldave Follow Improve Article Tags : Java Java-Functions Java-time package Java-Month Practice Tags : Java Similar Reads Month get() method in Java The get() method is a built-in method of the Month ENUM which is used to get the corresponding integral value of the month-of-year values specified by this Month instance. Syntax: public int get(TemporalField field) Parameters: This method accepts a single parameter which is a temporal object and ca 1 min read Month getLong() method in Java The getLong() method is a built-in method of the Month ENUM which is used to get the value of the specified temporal field from this month instance as a long. Syntax: public long getLong(TemporalField field) Parameters: This method accepts a single parameter field whose long representation will be r 1 min read YearMonth getMonthValue() method in Java The getMonthValue() method of YearMonth class in Java is used to get the value of the month field from this YearMonth instance with which it is used. It returns the value of the month field as an integer between 1-12 denoting months from January to December. Syntax: public int getMonthValue() Parame 1 min read YearMonth getYear() method in Java The getYear() method of YearMonth class in Java is used to get the value of the Year field from this YearMonth instance with which it is used. It returns the value of the year field as an integer from MIN_YEAR to MAX_YEAR. Syntax: public int getYear() Parameter: This method does not accepts any para 1 min read Month getDisplayName() method in Java The getDisplayName() method is a built-in method of the Month ENUM which is used to get the textual representation of the month-of-year specified by this Month instance. Syntax: public String getDisplayName(TextStyle style, Locale locale) Parameters: This method accepts two parameters as described b 1 min read Like