I have a method that returns a Timestamp and I need to pass this to a method that is expecting a Calendar object. ie. deliveryDetails.getWindowStart() // returns a Timestamp and I need to pass another method this value as a Calendar.
Manfred Leonhardt
Ranch Hand
Joined: Jan 09, 2001
Posts: 1492
posted
0
Hi Keith, Since Timestamp is a subclass of Date, the following should work: GregorianCalendar gc = new GregorianCalendar(); gc.setTime( deliveryDetails.getWindowStart() ); newMethod( gc ); Regards, Manfred.