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. textStoresThe cached text for this rule.Methods in javax.time.calendar with parameters of type DateTimeFormatterBuilder.TextStyle Modifier and Type Method Description java.lang.StringDateTimeFieldRule. getText(int value, java.util.Locale locale, DateTimeFormatterBuilder.TextStyle textStyle)Gets the text for this field.DateTimeFieldRule.TextStoreDateTimeFieldRule. 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 voidDateTimeFieldRule. 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 voidISOChronology.AmPmOfDayRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)protected voidISOChronology.DayOfWeekRule. createTextStores(java.util.EnumMap<DateTimeFormatterBuilder.TextStyle,DateTimeFieldRule.TextStore> textStores, java.util.Locale locale)protected voidISOChronology.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.TextStyleTextPrinterParser. textStyleThe text style, not null.private DateTimeFormatterBuilder.TextStyleZonePrinterParser. textStyleThe 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.TextStyleDateTimeFormatterBuilder.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 DateTimeFormatterBuilderDateTimeFormatterBuilder. appendText(DateTimeFieldRule<?> rule, DateTimeFormatterBuilder.TextStyle textStyle)Appends the text of a date-time field to the formatter.DateTimeFormatterBuilderDateTimeFormatterBuilder. 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.
-