public static enum NumberFormatter.NotationType extends Enum<NumberFormatter.NotationType>
| Enum Constant and Description |
|---|
EXP_e_MINUS
Scientific notation "e", "e-"
|
EXP_E_MINUS
Scientific notation "E", "E-" (default java behavior)
|
EXP_e_PLUS
Scientific notation "e+", "e-"
|
EXP_E_PLUS
Scientific notation "E+", "E-"
|
| Modifier and Type | Method and Description |
|---|---|
static NumberFormatter.NotationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NumberFormatter.NotationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NumberFormatter.NotationType EXP_E_MINUS
public static final NumberFormatter.NotationType EXP_E_PLUS
public static final NumberFormatter.NotationType EXP_e_MINUS
public static final NumberFormatter.NotationType EXP_e_PLUS
public static NumberFormatter.NotationType[] values()
for (NumberFormatter.NotationType c : NumberFormatter.NotationType.values()) System.out.println(c);
public static NumberFormatter.NotationType 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 nullCopyright © 2005–2021 OpenHMS. All rights reserved.