java.time.Month.getDisplayName() Method Example



Description

The java.time.Month.getDisplayName(TextStyle style, Locale locale) method gets the textual representation, such as 'Jan' or 'December'.

Declaration

Following is the declaration for java.time.Month.getDisplayName(TextStyle style, Locale locale) method.

public String getDisplayName(TextStyle style, Locale locale)

Parameters

  • style − the length of the text required, not null.

  • locale − the locale to use, not null.

Return Value

the text value of the month-of-year, not null.

Example

The following example shows the usage of java.time.Month.getDisplayName(TextStyle style, Locale locale) method.

package com.tutorialspoint;

import java.time.Month;
import java.time.format.TextStyle;
import java.util.Locale;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month day = Month.of(3);
      System.out.println(day.getDisplayName(TextStyle.SHORT,Locale.ENGLISH));  
   }
}

Let us compile and run the above program, this will produce the following result −

Mar
Advertisements