I get confused by the Java API for the Date class. Everything seems to be deprecated and links to the Calendar class. So I started using the Calendar objects to do what I would have liked to do with a Date, but intuitively it kind of bothers me to use a Calendar object when all I really want to do is create and compare two dates.
Is there a simple way to do that? For now I do (in Scala)
var cal = Calendar.getInstance()
cal.set(year, month, day, hour, minute, second)
cal.getTime() // get back to a Date object