Lines Matching defs:endMonth

181      *                    endMonth,
201 * @param endMonth The daylight saving time ending month. Month is
216 int endMonth, int endDay, int endDayOfWeek, int endTime)
220 endMonth, endDay, endDayOfWeek, endTime, WALL_TIME,
238 * endMonth,
257 * @param endMonth The daylight saving time ending month. Month is
274 int endMonth, int endDay, int endDayOfWeek, int endTime,
279 endMonth, endDay, endDayOfWeek, endTime, WALL_TIME,
305 * @param endMonth The daylight saving time ending month. Month is
331 int endMonth, int endDay, int endDayOfWeek,
342 this.endMonth = endMonth;
452 * @param endMonth The daylight saving time ending month. Month is
462 * @exception IllegalArgumentException if the <code>endMonth</code>, <code>endDay</code>,
465 public void setEndRule(int endMonth, int endDay, int endDayOfWeek,
468 this.endMonth = endMonth;
480 * <pre><code>setEndRule(endMonth, endDay, 0, endTime)</code></pre>
482 * @param endMonth The daylight saving time ending month. Month is
489 * @exception IllegalArgumentException the <code>endMonth</code>, <code>endDay</code>,
493 public void setEndRule(int endMonth, int endDay, int endTime)
495 setEndRule(endMonth, endDay, 0, endTime);
502 * @param endMonth The daylight saving time ending month. Month is
514 * @exception IllegalArgumentException the <code>endMonth</code>, <code>endDay</code>,
518 public void setEndRule(int endMonth, int endDay, int endDayOfWeek, int endTime, boolean after)
521 setEndRule(endMonth, endDay, -endDayOfWeek, endTime);
523 setEndRule(endMonth, -endDay, -endDayOfWeek, endTime);
741 return getTransition(cal, cdate, endMode, year, endMonth, endDay,
881 endMonth ^ endDay ^ endDayOfWeek ^ endTime ^ rawOffset;
933 endMonth == that.endMonth &&
959 ",endMonth=" + endMonth +
972 * <code>endMonth</code>.
1037 private int endMonth;
1045 * <code>endMonth</code> on which daylight
1047 * <code>endMonth</code>.
1052 * month <code>endMonth</code> daylight
1055 * first Sunday of <code>endMonth</code>. Likewise, +2 would indicate the
1429 if (endMonth < Calendar.JANUARY || endMonth > Calendar.DECEMBER) {
1431 "Illegal end month " + endMonth);
1461 } else if (endDay < 1 || endDay > staticMonthLength[endMonth]) {