Lines Matching defs:timezone

137      * The timezone for this Time.  Should not be null.
139 public String timezone;
167 * Construct a Time object in the timezone named by the string
168 * argument "timezone". The time is initialized to Jan 1, 1970.
169 * @param timezoneId string containing the timezone to use.
180 * Construct a Time object in the default timezone. The time is initialized to
194 initialize(other.timezone);
198 /** Initialize the Time to 00:00:00 1/1/1970 in the specified timezone. */
200 this.timezone = timezoneId;
238 * instead located in a different timezone. This method automatically calls
243 public void switchTimezone(String timezone) {
245 calculator.switchTimeZone(timezone);
247 this.timezone = timezone;
296 * Clears all values, setting the timezone to the given timezone. Sets isDst
298 * @param timezoneId the timezone to use.
302 throw new NullPointerException("timezone is null!");
304 this.timezone = timezoneId;
326 * available timezone information.
367 TimeCalculator calculator = new TimeCalculator(this.timezone);
384 * ends with "Z" then the timezone is set to UTC. If the date-time string
413 timezone = TIMEZONE_UTC;
547 timezone = TIMEZONE_UTC;
682 * Returns the timezone string that is currently set for the device.
744 * set to a local time that conflicts with available timezone information.
765 calculator.timezone = timezone;
774 * timezone set to "UTC".
785 this.timezone = that.timezone;
919 * Otherwise, if the timezone is UTC, expresses the time as Y-M-D-T-H-M-S UTC</p>
927 } else if (TIMEZONE_UTC.equals(timezone)) {
946 * been set to a local time that contradicts the available timezone information.
958 * timezone. The Julian day for a given date is the same for every
959 * timezone. For example, the Julian day for July 1, 2008 is 2454649.
963 * and the offset from UTC of the timezone in seconds (as might be in
982 * the same timezone that is set in this Time object. The "gmtoff" field
997 * @param julianDay the Julian day in the timezone for this Time object
1065 public String timezone;
1067 // Information about the current timezone.
1104 if (!zoneInfo.getID().equals(timezone)) {
1105 this.zoneInfo = lookupZoneInfo(timezone);
1121 throw new AssertionError("Error loading timezone: \"" + timezoneId + "\"", e);
1125 public void switchTimeZone(String timezone) {
1127 this.timezone = timezone;
1170 if (TIMEZONE_UTC.equals(timezone)) {
1197 timezone,
1208 if (aObject.timezone.equals(bObject.timezone)) {
1287 timezone = time.timezone;