Lines Matching refs:GregorianCalendar

15  * <strong>[icu enhancement]</strong> ICU's replacement for {@link java.util.GregorianCalendar}.&nbsp;Methods, fields, and other functionality specific to ICU are labeled '<strong>[icu]</strong>'.
17 * <p><code>GregorianCalendar</code> is a concrete subclass of
30 * this correctly. Before the Gregorian cutover, <code>GregorianCalendar</code>
36 * <p><code>GregorianCalendar</code> implements <em>proleptic</em> Gregorian and
39 * <code>GregorianCalendar</code> may be used for all years to generate
41 * <code>GregorianCalendar</code> are historically accurate only from March 1, 4
107 * // create a GregorianCalendar with the Pacific Daylight time zone
109 * Calendar calendar = new GregorianCalendar(pdt);
162 * GregorianCalendar usually should be instantiated using
170 public class GregorianCalendar extends Calendar {
327 * Constructs a default GregorianCalendar using the current time
331 public GregorianCalendar() {
336 * Constructs a GregorianCalendar based on the current time
341 public GregorianCalendar(TimeZone zone) {
346 * Constructs a GregorianCalendar based on the current time
350 public GregorianCalendar(Locale aLocale) {
355 * <strong>[icu]</strong> Constructs a GregorianCalendar based on the current time
359 public GregorianCalendar(ULocale locale) {
364 * <strong>[icu]</strong> Constructs a GregorianCalendar based on the current time
369 public GregorianCalendar(TimeZone zone, Locale aLocale) {
375 * Constructs a GregorianCalendar based on the current time
380 public GregorianCalendar(TimeZone zone, ULocale locale) {
386 * Constructs a GregorianCalendar with the given date set
394 public GregorianCalendar(int year, int month, int date) {
403 * Constructs a GregorianCalendar with the given date
415 public GregorianCalendar(int year, int month, int date, int hour,
427 * Constructs a GregorianCalendar with the given date
441 public GregorianCalendar(int year, int month, int date, int hour,
458 * Sets the GregorianCalendar change date. This is the point when the switch
485 GregorianCalendar cal = new GregorianCalendar(getTimeZone());
522 gregorianCutover == ((GregorianCalendar)other).gregorianCutover;
527 * Generates the hash code for the GregorianCalendar object
606 * won't behave properly at the extreme limits of GregorianCalendar's
872 return new GregorianCalendar(tz, loc);