DayPeriodSymbols holds the four locale strings used by the b pattern: AM, PM, noon, midnight.
- am : String
AM string (e.g., "AM").
- pm : String
PM string (e.g., "PM").
- noon : String
Noon string (e.g., "noon").
- midnight : String
Midnight string (e.g., "midnight").
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
DateFormatSymbols contains locale-specific strings needed for date/time formatting and parsing.
Full month names (12 elements, index 0 = January).
Abbreviated month names (12 elements, index 0 = Jan).
Narrow month names (12 elements, index 0 = J).
Full weekday names (7 elements, index 0 = Monday).
Abbreviated weekday names (7 elements, index 0 = Mon).
Narrow weekday names (7 elements, index 0 = M).
Two-letter abbreviated weekday names (7 elements, index 0 = Mo). Used by
EEEEEE,eeeeee,cccccc.Short era names (2 elements: index 0 = BCE, index 1 = CE).
Full era names (2 elements: index 0 = Before Common Era, index 1 = Common Era).
Narrow era names (2 elements: index 0 = B, index 1 = C).
Short quarter names (4 elements, index 0 = Q1).
Full quarter names (4 elements, index 0 = 1st quarter).
Narrow quarter names (4 elements, index 0 = 1).
- amShort : String
Short AM marker (used by
a/aa/aaa). - pmShort : String
Short PM marker (used by
a/aa/aaa). - amLong : String
Full AM marker (used by
aaaa). Typically lowercase per CLDR ("ante meridiem"). - pmLong : String
Full PM marker (used by
aaaa). Typically lowercase per CLDR ("post meridiem"). - amNarrow : String
Narrow AM marker (used by
aaaaa). - pmNarrow : String
Narrow PM marker (used by
aaaaa). - dayPeriodShort : DayPeriodSymbols
Short day-period strings for the
bpattern (AM, PM, noon, midnight). Used byb/bb/bbb. - dayPeriodLong : DayPeriodSymbols
Full day-period strings for the
bpattern (AM, PM, noon, midnight). Used bybbbb. Per TR35, AM/PM here are lowercase ("ante meridiem" / "post meridiem"). - dayPeriodNarrow : DayPeriodSymbols
Narrow day-period strings for the
bpattern (AM, PM, noon, midnight). Used bybbbbb. Short extended-day-period strings for the
Bpattern (CLDR flexible day periods). Order: midnight, night, morning, noon, afternoon, evening.Full extended-day-period strings for the
Bpattern. Order: midnight, night, morning, noon, afternoon, evening.Narrow extended-day-period strings for the
Bpattern. Order: midnight, night, morning, noon, afternoon, evening.
Instances For
English (US) locale symbols.
Equations
- One or more equations did not get rendered due to their size.
Instances For
DateFormat contains locale-specific configuration for date/time formatting and parsing,
combining calendar conventions (e.g. first day of week) with locale symbols.
- firstDayOfWeek : Weekday
The first day of the week for this locale (e.g.,
Weekday.sundayfor US,Weekday.mondayfor ISO 8601). - minimalDaysInFirstWeek : Internal.Bounded.LE 0 6
The minimum number of days that a week must have in the new year to count as week 1. ISO 8601 uses 4 (week 1 must contain the first Thursday); US locale uses 1 (any week containing Jan 1 is week 1).
- symbols : DateFormatSymbols
Locale-specific symbols used for formatting and parsing text fields.
Instances For
English (US) locale.
Equations
- One or more equations did not get rendered due to their size.