Here you can find the source of hour(Calendar calendar)
public static int hour(Calendar calendar)
//package com.java2s; //License from project: Open Source License import java.util.Calendar; public class Main { public static int hour(Calendar calendar) { return calendar.get(Calendar.HOUR_OF_DAY); }// w ww .j a v a2 s . c o m public static int hour() { return Calendar.getInstance().get(Calendar.HOUR_OF_DAY); } }