Member Name | Description |
---|
AmPm | Field number for get and set indicating
whether the HOUR is before or after noon. E.g., at
10:04:15.250 PM the AM_PM is PM. |
Date | Field number for get and set indicating the
day of the month. This is a synonym for DAY_OF_MONTH. The
first day of the month has value 1. |
DayOfMonth | Field number for get and set indicating the
day of the month. This is a synonym for DATE. The first
day of the month has value 1. |
DayOfWeek | Field number for get and set indicating the
day of the week. This field takes values SUNDAY,
MONDAY, TUESDAY, WEDNESDAY,
THURSDAY, FRIDAY, and
SATURDAY. |
DayOfWeekInMonth | Field number for get and set indicating the
ordinal number of the day of the week within the current month. Together
with the DAY_OF_WEEK field, this uniquely specifies a day
within a month. Unlike WEEK_OF_MONTH and
WEEK_OF_YEAR, this field's value does not
depend on getFirstDayOfWeek() or
getMinimalDaysInFirstWeek(). DAY_OF_MONTH 1
through 7 always correspond to DAY_OF_WEEK_IN_MONTH
1;
8 through 15 correspond to
DAY_OF_WEEK_IN_MONTH 2, and so on.
DAY_OF_WEEK_IN_MONTH 0 indicates the week before
DAY_OF_WEEK_IN_MONTH 1. Negative values count back from
the end of the month, so the last Sunday of a month is specified as
DAY_OF_WEEK = SUNDAY, DAY_OF_WEEK_IN_MONTH = -1. 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, DAY_OF_WEEK_IN_MONTH -1 will overlap
DAY_OF_WEEK_IN_MONTH 5 and the end of 4. |
DayOfYear | Field number for get and set indicating the
day number within the current year. The first day of the year has value
1.
|
DstOffset | Field number for get and set indicating the
daylight savings offset in milliseconds.
|
Era | Field number for get and set indicating the
era, e.g., AD or BC in the Julian calendar. This is a calendar-specific
value; see subclass documentation. |
Hour | Field number for get and set indicating the
hour of the morning or afternoon. HOUR is used for the
12-hour clock. E.g., at 10:04:15.250 PM the HOUR is 10. |
HourOfDay | Field number for get and set indicating the
hour of the day. HOUR_OF_DAY is used for the 24-hour
clock. E.g., at 10:04:15.250 PM the HOUR_OF_DAY is 22. |
Millisecond | Field number for get and set indicating the
millisecond within the second. E.g., at 10:04:15.250 PM the
MILLISECOND is 250.
|
Minute | Field number for get and set indicating the
minute within the hour. E.g., at 10:04:15.250 PM the MINUTE
is 4.
|
Month | Field number for get and set indicating the
month. This is a calendar-specific value. The first month of the year is
JANUARY; the last depends on the number of months in a
year. |
Second | Field number for get and set indicating the
second within the minute. E.g., at 10:04:15.250 PM the
SECOND is 15.
|
WeekOfMonth | Field number for get and set indicating the
week number within the current month. The first week of the month, as
defined by getFirstDayOfWeek() and
getMinimalDaysInFirstWeek(), has value 1. Subclasses
define the value of WEEK_OF_MONTH for days before the
first week of the month. |
WeekOfYear | Field number for get and set indicating the
week number within the current year. The first week of the year, as
defined by getFirstDayOfWeek() and
getMinimalDaysInFirstWeek(), has value 1. Subclasses
define the value of WEEK_OF_YEAR for days before the first
week of the year. |
Year | Field number for get and set indicating the
year. This is a calendar-specific value; see subclass documentation.
|
ZoneOffset | Field number for get and set indicating the
raw offset from GMT in milliseconds.
|