Field number for <code>get</code> and <code>set</code> indicating the
ordinal number of the day of the week within the current month. Together
with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day
within a month. Unlike <code>WEEK_OF_MONTH</code> and
<code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on
<code>getFirstDayOfWeek()</code> or
<code>getMinimalDaysInFirstWeek()</code>. <code>DAY_OF_MONTH 1</code>
through <code>7</code> always correspond to <code>DAY_OF_WEEK_IN_MONTH
1</code>; <code>8</code> through <code>14</code> correspond to
<code>DAY_OF_WEEK_IN_MONTH 2</code>, and so on.
<code>DAY_OF_WEEK_IN_MONTH 0</code> indicates the week before
<code>DAY_OF_WEEK_IN_MONTH 1</code>. Negative values count back from the
end of the month, so the last Sunday of a month is specified as
<code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>. Because
negative values count backward they will usually be aligned differently
within the month than positive values. For example, if a month has 31
days, <code>DAY_OF_WEEK_IN_MONTH -1</code> will overlap
<code>DAY_OF_WEEK_IN_MONTH 5</code> and the end of <code>4</code>.
Field number for <code>get</code> and <code>set</code> indicating the ordinal number of the day of the week within the current month. Together with the <code>DAY_OF_WEEK</code> field, this uniquely specifies a day within a month. Unlike <code>WEEK_OF_MONTH</code> and <code>WEEK_OF_YEAR</code>, this field's value does <em>not</em> depend on <code>getFirstDayOfWeek()</code> or <code>getMinimalDaysInFirstWeek()</code>. <code>DAY_OF_MONTH 1</code> through <code>7</code> always correspond to <code>DAY_OF_WEEK_IN_MONTH 1</code>; <code>8</code> through <code>14</code> correspond to <code>DAY_OF_WEEK_IN_MONTH 2</code>, and so on. <code>DAY_OF_WEEK_IN_MONTH 0</code> indicates the week before <code>DAY_OF_WEEK_IN_MONTH 1</code>. Negative values count back from the end of the month, so the last Sunday of a month is specified as <code>DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1</code>. Because negative values count backward they will usually be aligned differently within the month than positive values. For example, if a month has 31 days, <code>DAY_OF_WEEK_IN_MONTH -1</code> will overlap <code>DAY_OF_WEEK_IN_MONTH 5</code> and the end of <code>4</code>.
@see #DAY_OF_WEEK @see #WEEK_OF_MONTH