Uses of Class
javax.time.calendar.format.DateTimeFormatterBuilder.TextStyle
-
Packages that use DateTimeFormatterBuilder.TextStyle Package Description javax.time.calendar Provides classes to manage the human time scale including date, time, date-time and time-zone representations.javax.time.calendar.format Provides classes to format dates and times as strings. -
-
Uses of DateTimeFormatterBuilder.TextStyle in javax.time.calendar
Fields in javax.time.calendar with type parameters of type DateTimeFormatterBuilder.TextStyle Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<java.util.Locale,java.lang.ref.SoftReference<java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore>>>
DateTimeFieldRule. textStores
The cached text for this rule.Methods in javax.time.calendar with parameters of type DateTimeFormatterBuilder.TextStyle Modifier and Type Method Description java.lang.String
DateTimeFieldRule. getText(int value, java.util.Locale locale, DateTimeFormatterBuilder.TextStyle textStyle)
Gets the text for this field.DateTimeFieldRule.TextStore
DateTimeFieldRule. getTextStore(java.util.Locale locale, DateTimeFormatterBuilder.TextStyle textStyle)
Gets the text map for this field with the specified locale and style.Method parameters in javax.time.calendar with type arguments of type DateTimeFormatterBuilder.TextStyle Modifier and Type Method Description protected void
DateTimeFieldRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)
Creates the text store for each style for the specified locale.protected void
ISOChronology.AmPmOfDayRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)
protected void
ISOChronology.DayOfWeekRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)
protected void
ISOChronology.MonthOfYearRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)
-
Uses of DateTimeFormatterBuilder.TextStyle in javax.time.calendar.format
Fields in javax.time.calendar.format declared as DateTimeFormatterBuilder.TextStyle Modifier and Type Field Description private DateTimeFormatterBuilder.TextStyle
TextPrinterParser. textStyle
The text style, not null.private DateTimeFormatterBuilder.TextStyle
ZonePrinterParser. textStyle
The text style to output, null means the id.Methods in javax.time.calendar.format that return DateTimeFormatterBuilder.TextStyle Modifier and Type Method Description static DateTimeFormatterBuilder.TextStyle
DateTimeFormatterBuilder.TextStyle. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DateTimeFormatterBuilder.TextStyle[]
DateTimeFormatterBuilder.TextStyle. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in javax.time.calendar.format with parameters of type DateTimeFormatterBuilder.TextStyle Modifier and Type Method Description DateTimeFormatterBuilder
DateTimeFormatterBuilder. appendText(DateTimeFieldRule<?> rule, DateTimeFormatterBuilder.TextStyle textStyle)
Appends the text of a date-time field to the formatter.DateTimeFormatterBuilder
DateTimeFormatterBuilder. appendZoneText(DateTimeFormatterBuilder.TextStyle textStyle)
Appends the time-zone rule name, such as 'British Summer Time', to the formatter.Constructors in javax.time.calendar.format with parameters of type DateTimeFormatterBuilder.TextStyle Constructor Description TextPrinterParser(DateTimeFieldRule<?> rule, DateTimeFormatterBuilder.TextStyle textStyle)
Constructor.ZonePrinterParser(DateTimeFormatterBuilder.TextStyle textStyle)
Constructor.
-