Enum Class DtoaMode
- All Implemented Interfaces:
Serializable,Comparable<DtoaMode>,Constable
This defines the string conversion modes supported by this package.
The original C++ library also supports SHORTEST-SINGLE for single precision floats but we don't
since we always operate with doubles.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
-
Enum Constant Details
-
SHORTEST
Produce the shortest correct representation. For example the output of 0.299999999999999988897 is (the less accurate but correct) 0.3. -
FIXED
Produce a fixed number of digits after the decimal point. For instance fixed(0.1, 4) becomes 0.1000 If the input number is big, the output will be big. -
PRECISION
Fixed number of digits (independent of the decimal point).
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-