public enum DtoaMode extends Enum<DtoaMode>
Enum.EnumDesc<E extends Enum<E>>| Enum Constant and Description |
|---|
FIXED
Produce a fixed number of digits after the decimal point.
|
PRECISION
Fixed number of digits (independent of the decimal point).
|
SHORTEST
Produce the shortest correct representation.
|
| Modifier and Type | Method and Description |
|---|---|
static DtoaMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DtoaMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DtoaMode SHORTEST
public static final DtoaMode FIXED
public static final DtoaMode PRECISION
public static DtoaMode[] values()
public static DtoaMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null