Here you can find the source of getMaxTimeCalendar(Calendar source)
public static Calendar getMaxTimeCalendar(Calendar source)
//package com.java2s; import java.util.Calendar; public class Main { public static Calendar getMaxTimeCalendar(Calendar source) { Calendar calendar = Calendar.getInstance(); calendar.set(source.get(Calendar.YEAR), source.get(Calendar.MONTH), source.get(Calendar.DAY_OF_MONTH), 23, 59, 59);//w ww. ja v a 2 s . c o m return calendar; } }