Searched refs:SUNDAY (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/make/tools/src/build/tools/javazic/
H A DDayOfWeek.java35 SUNDAY("Sun"), enum constant in enum:DayOfWeek
H A DRuleDay.java185 if (dow >= DayOfWeek.SUNDAY.value() && dow <= DayOfWeek.SATURDAY.value()) {
/openjdk7/jdk/test/java/util/TimeZone/
H A DDaylightTimeTest.java67 APRIL, 1, -SUNDAY, 2*ONE_HOUR,
68 OCTOBER, -1, SUNDAY, 2*ONE_HOUR,
/openjdk7/jdk/src/share/classes/java/text/
H A DCalendarBuilder.java165 return calendarDayOfWeek == SUNDAY ? 7 : calendarDayOfWeek - 1;
173 return isoDayOfWeek == 7 ? SUNDAY : isoDayOfWeek + 1;
/openjdk7/jdk/test/java/util/Calendar/
H A DWeekDateTest.java130 cal.setWeekDate(cal.getWeekYear(), n, SUNDAY);
186 return (isoDayOfWeek == 7) ? SUNDAY : isoDayOfWeek + 1;
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DBaseCalendar.java56 public static final int SUNDAY = 1; field in class:BaseCalendar
480 return (int)(fixedDate % 7) + SUNDAY;
482 return (int)CalendarUtils.mod(fixedDate, 7) + SUNDAY;
H A DZoneInfo.java401 if (dayOfWeek < java.util.GregorianCalendar.SUNDAY
/openjdk7/jdk/src/share/classes/java/util/
H A DSimpleTimeZone.java67 * such as {@link Calendar#SUNDAY SUNDAY}. The meanings of value combinations
84 * Calendar#SUNDAY SUNDAY}.</li>
98 * Calendar#SUNDAY SUNDAY} and <em>day-of-month</em> to -1. </li>
120 * Calendar.APRIL, 1, -Calendar.SUNDAY,
122 * Calendar.OCTOBER, -1, Calendar.SUNDAY,
134 * Calendar.MARCH, -1, Calendar.SUNDAY,
136 * Calendar.OCTOBER, -1, Calendar.SUNDAY,
[all...]
H A DDate.java416 * <li>Any word that matches any prefix of <tt>SUNDAY, MONDAY, TUESDAY,
773 return normalize().getDayOfWeek() - gcal.SUNDAY;
1030 if (index == gcal.SUNDAY) {
H A DGregorianCalendar.java129 * {@code SUNDAY}, then week 1 of 1998 starts on January 4, 1998, and
145 * <p>For example, if <code>getFirstDayOfWeek()</code> is <code>SUNDAY</code>
264 * pdt.setStartRule(Calendar.APRIL, 1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
265 * pdt.setEndRule(Calendar.OCTOBER, -1, Calendar.SUNDAY, 2 * 60 * 60 * 1000);
444 SUNDAY, // DAY_OF_WEEK
2103 * Calendar#SUNDAY SUNDAY} to {@link Calendar#SATURDAY SATURDAY}.
2124 * {@link Calendar#SUNDAY SUNDAY}, ...,
2137 if (dayOfWeek < SUNDAY || dayOfWee
[all...]
H A DCalendar.java453 * of the week. This field takes values <code>SUNDAY</code>,
457 * @see #SUNDAY
481 * <code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>. Because
576 public final static int SUNDAY = 1; field in class:Calendar
825 * The first day of the week, with possible values <code>SUNDAY</code>,
2149 * Sets what the first day of the week is; e.g., <code>SUNDAY</code> in the U.S.,
2166 * Gets what the first day of the week is; e.g., <code>SUNDAY</code> in the U.S.,
2269 * #SUNDAY}, ..., {@link #SATURDAY}.
H A DJapaneseImperialCalendar.java169 SUNDAY, // DAY_OF_WEEK

Completed in 294 milliseconds