Searched refs:textStyle (Results 1 - 2 of 2) sorted by relevance

/openjdk10/jdk/src/java.base/share/classes/java/time/format/
H A DDateTimeTextProvider.java333 for (TextStyle textStyle : TextStyle.values()) {
334 if (textStyle.isStandalone()) {
339 "gregory", Calendar.ERA, textStyle.toCalendarStyle(), locale);
346 styleMap.put(textStyle, map);
354 for (TextStyle textStyle : TextStyle.values()) {
358 if ((textStyle.equals(TextStyle.NARROW) ||
359 textStyle.equals(TextStyle.NARROW_STANDALONE))) {
364 month, textStyle.toCalendarStyle(), locale);
372 "gregory", Calendar.MONTH, textStyle.toCalendarStyle(), locale);
383 "gregory", Calendar.MONTH, month, textStyle
[all...]
H A DDateTimeFormatterBuilder.java738 * @param textStyle the text style to use, not null
741 public DateTimeFormatterBuilder appendText(TemporalField field, TextStyle textStyle) { argument
743 Objects.requireNonNull(textStyle, "textStyle");
744 appendInternal(new TextPrinterParser(field, textStyle, DateTimeTextProvider.getInstance()));
1198 * @param textStyle the text style to use, not null
1201 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle) { argument
1202 appendInternal(new ZoneTextPrinterParser(textStyle, null, false));
1239 * @param textStyle the text style to use, not null
1243 public DateTimeFormatterBuilder appendZoneText(TextStyle textStyle, argument
1283 appendGenericZoneText(TextStyle textStyle) argument
1309 appendGenericZoneText(TextStyle textStyle, Set<ZoneId> preferredZones) argument
1349 appendChronologyText(TextStyle textStyle) argument
3261 private final TextStyle textStyle; field in class:DateTimeFormatterBuilder.TextPrinterParser
3276 TextPrinterParser(TemporalField field, TextStyle textStyle, DateTimeTextProvider provider) argument
3989 private final TextStyle textStyle; field in class:DateTimeFormatterBuilder.ZoneTextPrinterParser
3996 ZoneTextPrinterParser(TextStyle textStyle, Set<ZoneId> preferredZones, boolean isGeneric) argument
4641 private final TextStyle textStyle; field in class:DateTimeFormatterBuilder.ChronoPrinterParser
4643 ChronoPrinterParser(TextStyle textStyle) argument
[all...]

Completed in 110 milliseconds