Here you can find the source of getYear(int year)
private static String getYear(int year)
//package com.java2s; //License from project: Apache License public class Main { private static String getYear(int year) { return Integer.toString(year); }//w w w . j a v a 2 s . c om }