Open In App

Calendar getDisplayNames() Method in Java with Examples

The getDisplayNames(int cal_field, int cal_style, Locale local) method of Calendar class is used to return a map containing all the names of the calendar field(int cal_field) in the given style(int cal_style) and locale(Locale local) and their corresponding field values.

Syntax:



public Map getDisplayNames(int field, int style, Locale locale)

Parameters: The method takes three parameters:

Return Value: The method either returns the string representation of the given field in the form of the passing style else null if no string representation is available.



Below programs illustrate the working of getDisplayNames() Method of Calendar class:
Example:




// Java Code to illustrate
// getdisplaynames() Method
  
import java.util.*;
  
public class Calendar_Demo_Locale {
    public static void main(String args[])
    {
  
        // Creating the Calendar
        Calendar cal = Calendar.getInstance();
  
        // Creating the Locale
        Locale local = Locale.getDefault();
  
        // Calling the getdisplaynames method
        Map<String, Integer> cal_repres = cal.getDisplayNames(Calendar.DAY_OF_WEEK,
                                                              Calendar.LONG, local);
  
        NavigableMap<String, Integer> Nav_Map = new TreeMap<String, Integer>(cal_repres);
  
        // Displaying the results
        System.out.printf("The complete list is: %n%s%n", Nav_Map);
    }
}

Reference: https://docs.oracle.com/javase/7/docs/api/java/util/Calendar.html#getDisplayNames(int, %20int, %20java.util.Locale)

Article Tags :