Here you can find the source of getMonthsMap()
public static Map<String, String> getMonthsMap()
//package com.java2s; //License from project: Apache License import java.util.*; public class Main { /**/*from www. j av a 2 s . c om*/ * Map of months, using the number as the key, month name as the value */ public static Map<String, String> monthNames; /** * Returns a map of months * * @see #monthNames */ public static Map<String, String> getMonthsMap() { return monthNames; } }