Uses of Class
org.threeten.bp.format.DecimalStyle
-
Packages that use DecimalStyle Package Description org.threeten.bp.format Provides classes to print and parse dates and times. -
-
Uses of DecimalStyle in org.threeten.bp.format
Fields in org.threeten.bp.format declared as DecimalStyle Modifier and Type Field Description private DecimalStyleDateTimeFormatter. decimalStyleThe symbols to use for formatting, not null.static DecimalStyleDecimalStyle. STANDARDThe standard set of non-localized symbols.private DecimalStyleDateTimeParseContext. symbolsThe symbols, not null.private DecimalStyleDateTimePrintContext. symbolsThe symbols, not null.Fields in org.threeten.bp.format with type parameters of type DecimalStyle Modifier and Type Field Description private static java.util.concurrent.ConcurrentMap<java.util.Locale,DecimalStyle>DecimalStyle. CACHEThe cache of symbols instances.Methods in org.threeten.bp.format that return DecimalStyle Modifier and Type Method Description private static DecimalStyleDecimalStyle. create(java.util.Locale locale)DecimalStyleDateTimeFormatter. getDecimalStyle()Gets the decimal style to be used during formatting.(package private) DecimalStyleDateTimeParseContext. getSymbols()Gets the formatting symbols.(package private) DecimalStyleDateTimePrintContext. getSymbols()Gets the formatting symbols.static DecimalStyleDecimalStyle. of(java.util.Locale locale)Obtains symbols for the specified locale.static DecimalStyleDecimalStyle. ofDefaultLocale()Obtains symbols for the default locale.DecimalStyleDecimalStyle. withDecimalSeparator(char decimalSeparator)Returns a copy of the info with a new character that represents the decimal point.DecimalStyleDecimalStyle. withNegativeSign(char negativeSign)Returns a copy of the info with a new character that represents the negative sign.DecimalStyleDecimalStyle. withPositiveSign(char positiveSign)Returns a copy of the info with a new character that represents the positive sign.DecimalStyleDecimalStyle. withZeroDigit(char zeroDigit)Returns a copy of the info with a new character that represents zero.Methods in org.threeten.bp.format with parameters of type DecimalStyle Modifier and Type Method Description DateTimeFormatterDateTimeFormatter. withDecimalStyle(DecimalStyle decimalStyle)Returns a copy of this formatter with a new decimal style.Constructors in org.threeten.bp.format with parameters of type DecimalStyle Constructor Description DateTimeFormatter(DateTimeFormatterBuilder.CompositePrinterParser printerParser, java.util.Locale locale, DecimalStyle decimalStyle, ResolverStyle resolverStyle, java.util.Set<TemporalField> resolverFields, Chronology chrono, ZoneId zone)Constructor.DateTimeParseContext(java.util.Locale locale, DecimalStyle symbols, Chronology chronology)DateTimePrintContext(TemporalAccessor temporal, java.util.Locale locale, DecimalStyle symbols)
-