Searched defs:calendar (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DTzIDOldMapping.java26 package sun.util.calendar;
H A DGregorian.java26 package sun.util.calendar;
31 * Gregorian calendar implementation.
H A DCalendarUtils.java26 package sun.util.calendar;
35 * calendar system.
37 * @param gregorianYear a Gregorian calendar year
39 * calendar system.
49 * calendar system. The year number must be a normalized one
52 * @param normalizedJulianYear a normalized Julian calendar year
54 * calendar system.
H A DEra.java26 package sun.util.calendar;
32 * The class <code>Era</code> represents a calendar era that defines a
35 * calendar system. An era starts at any point of time (Gregorian) that is
38 * <p><code>Era</code>s that are applicable to a particular calendar
48 * Japanese calendar Meiji 1868-01-01 midnight local time
52 * Julian calendar BeforeCommonEra -292275055-05-16T16:47:04.192Z
54 * Taiwanese calendar MinGuo 1911-01-01 midnight local time
55 * Thai Buddhist calendar BuddhistEra -543-01-01 midnight local time
73 * @param name the era name (e.g., "BeforeCommonEra" for the Julian calendar system)
H A DAbstractCalendar.java26 package sun.util.calendar;
33 * implementing a concrete calendar system.
37 * For implementing a concrete calendar system, each calendar must
328 * Returns the fixed date calculated with the specified calendar
340 * Calculates calendar fields from the specified fixed date. This
341 * method stores the calculated calendar field values in the specified
345 * calculated calendar fields.
346 * @param fixedDate a fixed date to calculate calendar fields
H A DCalendarSystem.java26 package sun.util.calendar;
41 * programming interface to deal with calendar date and time.
44 * example, there exists only one Gregorian calendar instance in the
54 * because, for example, a Chinese calendar date can't be understood
55 * by the Hebrew calendar system.
59 * Each calendar system has a unique name to be identified. The Java
60 * runtime in this release supports the following calendar systems.
81 // Map of calendar names and calendar class names
84 // Map of calendar name
[all...]
H A DJulianCalendar.java26 package sun.util.calendar;
31 * Julian calendar implementation.
H A DLocalGregorianCalendar.java26 package sun.util.calendar;
140 // Parse calendar.*.eras
141 String props = calendarProps.getProperty("calendar." + name + ".eras");
H A DBaseCalendar.java26 package sun.util.calendar;
32 * The <code>BaseCalendar</code> provides basic calendar calculation
34 * calendar systems.
227 // the calendar fields. Let getTime() do it.
415 * Calculates calendar fields and store them in the specified
H A DZoneInfoFile.java26 package sun.util.calendar;
H A DCalendarDate.java26 package sun.util.calendar;
34 * in time by calendar date and time fields that are multiple cycles
35 * in different time unites. The semantics of each calendar field is
36 * given by a concrete calendar system rather than this
37 * <code>CalendarDate</code> class that holds calendar field values
46 * of calendar dates must be handled by the calendar system by which
49 * <p>Some calendar fields can be modified through method calls. Any
50 * modification of a calendar field brings the state of a
52 * normalization must be performed to make all the calendar field
[all...]
H A DImmutableGregorianDate.java26 package sun.util.calendar;
H A DZoneInfo.java26 package sun.util.calendar;
50 * <code>ZoneInfo</code> can be used with any calendar systems except
52 * method that takes Gregorian calendar date fields.
365 * assumes a Gregorian calendar for calculations.
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDuration.java509 * object is based on some other calendar systems.
528 * @param calendar
529 * A calendar object whose value will be modified.
531 * if the calendar parameter is null.
533 public abstract void addTo(Calendar calendar); argument
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/datatype/
H A DDurationImpl.java1898 * object is based on some other calendar systems.
1917 * @param calendar
1918 * A calendar object whose value will be modified.
1920 * if the calendar parameter is null.
1922 public void addTo(Calendar calendar) { argument
1923 calendar.add(Calendar.YEAR, getYears() * signum);
1924 calendar.add(Calendar.MONTH, getMonths() * signum);
1925 calendar.add(Calendar.DAY_OF_MONTH, getDays() * signum);
1926 calendar.add(Calendar.HOUR, getHours() * signum);
1927 calendar
[all...]
/openjdk7/jdk/src/share/classes/java/text/
H A DDateFormat.java71 * months, days of the week, or even the calendar format: lunar vs. solar.
155 protected Calendar calendar; field in class:DateFormat
372 * <p>This parsing operation uses the {@link #calendar} to produce
373 * a {@code Date}. As a result, the {@code calendar}'s date-time
579 * Set the calendar to be used by this date format. Initially, the default
580 * calendar for the specified or default locale is used.
590 this.calendar = newCalendar;
594 * Gets the calendar associated with this date/time formatter.
596 * @return the calendar associated with this date/time formatter.
600 return calendar;
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DCalendar.java57 import sun.util.calendar.ZoneInfo;
63 * #fields calendar fields} such as <code>YEAR</code>, <code>MONTH</code>,
65 * manipulating the calendar fields, such as getting the date of the next
71 * implementing a concrete calendar system outside the package. Those
79 * calendar fields have been initialized with the current date and time:
86 * <p>A <code>Calendar</code> object can produce all the calendar field values
88 * calendar style (for example, Japanese-Gregorian, Japanese-Traditional).
90 * certain calendar fields, as well as their meaning. For example,
91 * the first month of the calendar system has value <code>MONTH ==
98 * <p>The calendar fiel
2617 getMillisOf(Calendar calendar) argument
[all...]

Completed in 55 milliseconds