I have tried with the below code to compare two times:
SimpleDateFormat sdf = new SimpleDateFormat(\"hh:mm\"); Date inTime = sdf.parse(\"11:00\");
If you are using 24 hour time format then use kk instead of HH.
kk
HH
SimpleDateFormat sdf = new SimpleDateFormat("kk:mm");