Lines Matching full:day
24 * a rule specified by month, day of month, day of week and
25 * time in the day.
37 DOM = 0, /**< The exact day of month,
39 DOW, /**< The Nth occurence of the day of week,
41 DOW_GEQ_DOM, /**< The first occurence of the day of week on or after the day of monnth,
43 DOW_LEQ_DOM /**< The last occurence of the day of week on or before the day of month,
58 * Constructs a <code>DateTimeRule</code> by the day of month and
63 * @param dayOfMonth The day of month, 1-based.
73 * Constructs a <code>DateTimeRule</code> by the day of week and its oridinal
78 * @param weekInMonth The ordinal number of the day of week. Negative number
81 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>.
91 * Constructs a <code>DateTimeRule</code> by the first/last day of week
92 * on or after/before the day of month and the time rule. The date rule
97 * @param dayOfMonth The day of month, 1-based.
98 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>.
99 * @param after true if the rule date is on or after the day of month.
177 * Gets the rule day of month. When the date rule type
179 * @return The rule day of month
185 * Gets the rule day of week. When the date rule type
187 * @return The rule day of week.
193 * Gets the ordinal number of the occurence of the day of week
196 * @return The rule day of week ordinal number in the month.
202 * Gets the rule time in the rule day.
203 * @return The time in the rule day in milliseconds.