Here you can find the source of getMonthIndexAsString(String type)
public static String getMonthIndexAsString(String type)
//package com.java2s; public class Main { public static String getMonthIndexAsString(String type) { return Integer.toString(Integer.parseInt(type) - 1); }//from w w w. jav a 2 s .com }