@Deprecated public static enum DecimalFormat.SignificantDigitsMode extends Enum<DecimalFormat.SignificantDigitsMode>
DecimalFormat.setSignificantDigitsMode(com.ibm.icu.text.DecimalFormat.SignificantDigitsMode)
Enum Constant and Description |
---|
ENSURE_MINIMUM_SIGNIFICANT
Deprecated.
ICU 59: This API is technical preview. It may change in an upcoming release.
|
OVERRIDE_MAXIMUM_FRACTION
Deprecated.
ICU 59: This API is technical preview. It may change in an upcoming release.
|
RESPECT_MAXIMUM_FRACTION
Deprecated.
ICU 59: This API is technical preview. It may change in an upcoming release.
|
Modifier and Type | Method and Description |
---|---|
static DecimalFormat.SignificantDigitsMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static DecimalFormat.SignificantDigitsMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final DecimalFormat.SignificantDigitsMode OVERRIDE_MAXIMUM_FRACTION
DecimalFormat.setSignificantDigitsMode(com.ibm.icu.text.DecimalFormat.SignificantDigitsMode)
@Deprecated public static final DecimalFormat.SignificantDigitsMode RESPECT_MAXIMUM_FRACTION
DecimalFormat.setSignificantDigitsMode(com.ibm.icu.text.DecimalFormat.SignificantDigitsMode)
@Deprecated public static final DecimalFormat.SignificantDigitsMode ENSURE_MINIMUM_SIGNIFICANT
DecimalFormat.setSignificantDigitsMode(com.ibm.icu.text.DecimalFormat.SignificantDigitsMode)
public static DecimalFormat.SignificantDigitsMode[] values()
for (DecimalFormat.SignificantDigitsMode c : DecimalFormat.SignificantDigitsMode.values()) System.out.println(c);
public static DecimalFormat.SignificantDigitsMode 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 ? 2016 Unicode, Inc. and others.