Serializable
DateFormat
public static class DateFormat.Field extends Format.Field
AttributedCharacterIterator
returned from DateFormat.formatToCharacterIterator
and as field identifiers in FieldPosition
. The class also provides two methods to map between its constants and the corresponding Calendar constants.
Modifier and Type | Field | Description |
---|---|---|
static final DateFormat.Field |
AM_PM |
Constant identifying the time of day indicator (e.g. "a.m." or "p.m.") field. |
static final DateFormat.Field |
DAY_OF_MONTH |
Constant identifying the day of month field. |
static final DateFormat.Field |
DAY_OF_WEEK |
Constant identifying the day of week field. |
static final DateFormat.Field |
DAY_OF_WEEK_IN_MONTH |
Constant identifying the day of week field. |
static final DateFormat.Field |
DAY_OF_YEAR |
Constant identifying the day of year field. |
static final DateFormat.Field |
ERA |
Constant identifying the era field. |
static final DateFormat.Field |
HOUR_OF_DAY0 |
Constant identifying the hour of day field, where the legal values are 0 to 23. |
static final DateFormat.Field |
HOUR_OF_DAY1 |
Constant identifying the hour of day field, where the legal values are 1 to 24. |
static final DateFormat.Field |
HOUR0 |
Constant identifying the hour field, where the legal values are 0 to 11. |
static final DateFormat.Field |
HOUR1 |
Constant identifying the hour field, where the legal values are 1 to 12. |
static final DateFormat.Field |
MILLISECOND |
Constant identifying the millisecond field. |
static final DateFormat.Field |
MINUTE |
Constant identifying the minute field. |
static final DateFormat.Field |
MONTH |
Constant identifying the month field. |
static final DateFormat.Field |
SECOND |
Constant identifying the second field. |
static final DateFormat.Field |
TIME_ZONE |
Constant identifying the time zone field. |
static final DateFormat.Field |
WEEK_OF_MONTH |
Constant identifying the week of month field. |
static final DateFormat.Field |
WEEK_OF_YEAR |
Constant identifying the week of year field. |
static final DateFormat.Field |
YEAR |
Constant identifying the year field. |
INPUT_METHOD_SEGMENT, LANGUAGE, READING
Modifier | Constructor | Description |
---|---|---|
protected |
Creates a Field . |
Modifier and Type | Method | Description |
---|---|---|
int |
getCalendarField() |
Returns the Calendar field associated with this attribute. |
static DateFormat.Field |
ofCalendarField |
Returns the Field constant that corresponds to the Calendar constant calendarField . |
protected Object |
readResolve() |
Resolves instances being deserialized to the predefined constants. |
equals, getName, hashCode, toString
public static final DateFormat.Field ERA
public static final DateFormat.Field YEAR
public static final DateFormat.Field MONTH
public static final DateFormat.Field DAY_OF_MONTH
public static final DateFormat.Field HOUR_OF_DAY1
public static final DateFormat.Field HOUR_OF_DAY0
public static final DateFormat.Field MINUTE
public static final DateFormat.Field SECOND
public static final DateFormat.Field MILLISECOND
public static final DateFormat.Field DAY_OF_WEEK
public static final DateFormat.Field DAY_OF_YEAR
public static final DateFormat.Field DAY_OF_WEEK_IN_MONTH
public static final DateFormat.Field WEEK_OF_YEAR
public static final DateFormat.Field WEEK_OF_MONTH
public static final DateFormat.Field AM_PM
public static final DateFormat.Field HOUR1
public static final DateFormat.Field HOUR0
public static final DateFormat.Field TIME_ZONE
protected Field(String name, int calendarField)
Field
.name
- the name of the Field
calendarField
- the Calendar
constant this Field
corresponds to; any value, even one outside the range of legal Calendar
values may be used, but -1
should be used for values that don't correspond to legal Calendar
valuespublic static DateFormat.Field ofCalendarField(int calendarField)
Field
constant that corresponds to the Calendar
constant calendarField
. If there is no direct mapping between the Calendar
constant and a Field
, null is returned.calendarField
- Calendar field constantIllegalArgumentException
- if calendarField
is not the value of a Calendar
field constant.public int getCalendarField()
Calendar
field associated with this attribute. For example, if this represents the hours field of a Calendar
, this would return Calendar.HOUR
. If there is no corresponding Calendar
constant, this will return -1.protected Object readResolve() throws InvalidObjectException
readResolve
in class AttributedCharacterIterator.Attribute
InvalidObjectException
- if the constant could not be resolved.
© 1993, 2023, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/text/DateFormat.Field.html