Uses of Record Class
ch.randelshofer.fastdoubleparser.NumberFormatSymbols
Packages that use NumberFormatSymbols
Package
Description
Provides fast parsers for Java
FloatingPointLiterals,
and JSON numbers.-
Uses of NumberFormatSymbols in ch.randelshofer.fastdoubleparser
Methods in ch.randelshofer.fastdoubleparser that return NumberFormatSymbolsModifier and TypeMethodDescriptionstatic NumberFormatSymbolsNumberFormatSymbols.fromDecimalFormatSymbols(DecimalFormatSymbols symbols) Creates a new instance from the providedDecimalFormatSymbols.static NumberFormatSymbolsNumberFormatSymbols.fromDefault()Creates a new instance with the following default symbols.ConfigurableDoubleParser.getNumberFormatSymbols()Gets the number format symbols of this parser.NumberFormatSymbols.withDecimalSeparator(Set<Character> newValue) Creates a new instance with the specified decimal separator symbols.NumberFormatSymbols.withDigits(List<Character> newValue) Creates a new instance with the specified digits.NumberFormatSymbols.withExponentSeparator(Set<String> newValue) Creates a new instance with the specified exponent separator symbols.NumberFormatSymbols.withGroupingSeparator(Set<Character> newValue) Creates a new instance with the specified grouping separator symbols.NumberFormatSymbols.withInfinity(Set<String> newValue) Creates a new instance with the specified infinity symbols.NumberFormatSymbols.withMinusSign(Set<Character> newValue) Creates a new instance with the specified minus sign symbols.Creates a new instance with the specified NaN symbols.NumberFormatSymbols.withPlusSign(Set<Character> newValue) Creates a new instance with the specified plus sign symbols.Constructors in ch.randelshofer.fastdoubleparser with parameters of type NumberFormatSymbolsModifierConstructorDescriptionCreates a new instance with the specified number format symbols.ConfigurableDoubleParser(NumberFormatSymbols symbols, boolean ignoreCase) Creates a new instance with the specified number format symbols and case sensitivity.