• Home
  • Raw
  • Download

Lines Matching +full:- +full:wall

1 ---
6 ---
7 <!--
10 -->
16 {: .no_toc .text-delta }
21 ---
39 non-gregorian calendars including:
91 class, define specific operations that correspond to a real-world calendar
93 embody state that represents a specific context. They correspond to a real-world
113 8. Miscellaneous: field meta-information, time comparison
167 Date date = new Date(2000-1900, Calendar.JULY, 4);
182 1. Locale-specific week data, including the first day of the week and the
210 #### Ambiguous Wall Clock Time Resolution
214 time. On the date of transition to daylight saving time in US, wall clock time
215 jumps from 12:59 AM (standard) to 2:00 AM (daylight). Therefore, wall clock
216 times from 1:00 AM to 1:59 AM do not exist on the date. When the input wall time
219 interpreted as 1:30 AM standard time (non-exist), so the final result will be
221 On the date of transition back to standard time, wall clock time is moved back
222 one hour at 2:00 AM. So wall clock times from 1:00 AM to 1:59 AM occur twice. In
226 Ambiguous wall clock time resolution behaviors can be customized by Calendar
242 cut-over date. Before this date, the Julian calendar algorithms are used. After
243 it, the Gregorian calendar algorithms are used. By default, the cut-over date is
246 historical accuracy beyond this behavior, and does not vary its cut-over date by
247 locale. However, users can modify the cut-over date by using the
252 directly access the GregorianCalendar-specific methods not present in `Calendar`.
258 if (cal->getDynamicClassID() == GregorianCalendar::getStaticClassID()) {
260 gc->setGregorianChange(myCutover, status);
273 "Tuesday, July 15, 1996" -— July 15, 1996, is actually a Monday), or the input
295 3. **Ambiguous Wall Clock Time**
298 saving time. On the date switching to daylight saving time in US, wall clock
299 time jumps from 1:00 AM (standard) to 2:00 AM (daylight). Therefore, wall
301 wall time fall into this missing time slot, the ICU Calendar resolves the
303 1:30 AM is interpreted as 1:30 AM standard time (non-exist), so the final
305 On the date switching back to standard time, wall clock time is moved back
306 one hour at 2:00 AM. So wall clock time from 1:00 AM to 1:59 AM occur twice.
312 > :point_right: **Note**: *Ambiguous wall clock time resolution behaviors can be customized by Cale…