You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLDR-data have skeleton pattern entries which allow to generate patterns for date and time just based on locale, text width and a choice of "skeleton" identifiers (ruling which date-time-elements shall be used). Example from German data:
The skeleton identifiers might be modelled as enums which look like DateSkeleton.YMD or TimeSkeleton.HMSA and can be used either just for date or time patterns or can be combined by and(...)-methods to form date-time-patterns using a generator-method like createPattern(Locale, TextWidth).
The text was updated successfully, but these errors were encountered:
The CLDR-data have skeleton pattern entries which allow to generate patterns for date and time just based on locale, text width and a choice of "skeleton" identifiers (ruling which date-time-elements shall be used). Example from German data:
The skeleton identifiers might be modelled as enums which look like
DateSkeleton.YMD
orTimeSkeleton.HMSA
and can be used either just for date or time patterns or can be combined byand(...)
-methods to form date-time-patterns using a generator-method likecreatePattern(Locale, TextWidth)
.The text was updated successfully, but these errors were encountered: