Via Nathan Curtis: A method on Builder to set the TimeZone.
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2747 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -104,6 +104,12 @@ public class Calendars
|
||||
return zeroTime();
|
||||
}
|
||||
|
||||
/** See {@link Calendar#setTimeZone(TimeZone)}. */
|
||||
public Builder in (TimeZone zone) {
|
||||
_calendar.setTimeZone(zone);
|
||||
return this;
|
||||
}
|
||||
|
||||
/** Zeros out the time fields of this calendar, preserving only the date. */
|
||||
public Builder zeroTime () {
|
||||
_calendar.set(Calendar.HOUR_OF_DAY, 0);
|
||||
|
||||
Reference in New Issue
Block a user